首页 > 网站 > WEB开发 > 正文

使用jsonp处理跨域问题

2024-04-27 14:16:12
字体:
来源:转载
供稿:网友

使用jsonp处理跨域问题

2014-11-26 21:30 by xtechnet, ... 阅读, ... 评论, 收藏, 编辑

调用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) {        }    });


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表