码迷,mamicode.com
首页 > Web开发 > 详细

使用jsonp处理跨域问题

时间:2014-11-26 22:29:10      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   使用   sp   on   div   

调用web接口,get请求,发现提示:No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

这个和安全机制有关,默认不允许跨域调用

bubuko.com,布布扣

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

$.ajax({
        url: "http://.......",
        type: ‘GET‘,
        dataType: ‘JSONP‘,//here
        success: function (data) {

        }
    });

 

使用jsonp处理跨域问题

标签:style   blog   http   io   color   使用   sp   on   div   

原文地址:http://www.cnblogs.com/xtechnet/p/4123210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!