您好,欢迎访问一九零五行业门户网

使用jsonp完美解决跨域问题_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) {        }
    });
哎这真是难者不会,会者不难啊,简单的一行代码,就解决了这个大问题。。。。哭~
其它类似信息

推荐信息