使用jsonp完美解决跨域问题
时间:2020-12-20 11:57:54|栏目:JavaScript代码|点击: 次
调用web接口,get请求,发现提示: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) {
}
});
哎这真是难者不会,会者不难啊,简单的一行代码,就解决了这个大问题。。。。哭~
上一篇:event.keyCode键码值表 附只能输入特定的字符串代码
栏 目:JavaScript代码
本文标题:使用jsonp完美解决跨域问题
本文地址:http://www.codeinn.net/misctech/34583.html