JS跨域代码
//部分JS代码
$.ajax({
async: false,
url: "http://www.xxxx.com/api/",
type: "GET",//不能使用POST方式
dataType: 'jsonp',
jsonp: 'jsonpcallback',
data: "uid=3&atoken=NTdZUlJXAUNAHUJcXgde",
contentType: "application/json;utf-8",
success: function (result) {
console.log(result);
},
error: function (jqXHR, textStatus, errorThrown) {
}
});
//部分PHP代码
$result['success'] = true;
$result['count'] = 123;
$callback=$_GET['jsonpcallback'];
header('Content-Type:application/json');
echo $callback.'('.json_encode($result).')';
例如前端请求地址:http://www.xxxx.com/api/?jsonpcallback=nnnnnnnn
后端则返回结果:nnnnnnnn({"success":true,"count":123})
转载请注明原处