json跨域请求报错

做项目遇到 记录下 以免忘记json跨域请求报错,错误信息No 'Access-Control-Allow-Origin' header is present on the requested resource

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

 代码格式:

$.ajax({

url: "http://.......",

type: 'GET',

dataType: 'JSONP',//here

success: function (data) { 
}

});

 

  

posted @ 2015-08-10 11:24  隔壁王叔  阅读(186)  评论(0编辑  收藏  举报