Ajax解决No 'Access-Control-Allow-Origin' header is present on the requested resource.

今天使用Ajax获取豆瓣上的api接口的时候报了如下错误

No 'Access-Control-Allow-Origin' header is present on the requested resource.
ajax.png

解决方案

使用jsonp格式, ajax请求参数dataType:'JSONP'。

$.ajax({
   url: "http://",
   type: 'POST',
   dataType: 'JSONP',//here
   success: function (data) {
       console.log(data);
   },
});

你可能感兴趣的:(Ajax解决No 'Access-Control-Allow-Origin' header is present on the requested resource.)