ajax,本地跨域访问这个地址怎么得到里边的json到页面,目前不进入success
目前是使用的$.ajax({type:'GET',url:"http://test.peiwoapi.com:8920/report/list?uid=1&page=1&...
目前是使用的 $.ajax({
type: 'GET',
url:"http://test.peiwoapi.com:8920/report/list?uid=1&page=1&gender=3&sign=0c44ee473ab5362dae57b45575521bd0&callback=callback",
cache:false,
async: true,
dataType: "jsonp",
jsonpCallback:"callback",
success: function jsonpCallback(data){
alert("success");
},
complete: function(data){
alert("5454"+data.code);
},
error: function(xhr, textStatus, errorThrown){
alert(textStatus + errorThrown+"-------st-------"+xhr.statusText+"---RE:--"+xhr.responseText+"-----st------"+xhr.status);
}
}); 展开
type: 'GET',
url:"http://test.peiwoapi.com:8920/report/list?uid=1&page=1&gender=3&sign=0c44ee473ab5362dae57b45575521bd0&callback=callback",
cache:false,
async: true,
dataType: "jsonp",
jsonpCallback:"callback",
success: function jsonpCallback(data){
alert("success");
},
complete: function(data){
alert("5454"+data.code);
},
error: function(xhr, textStatus, errorThrown){
alert(textStatus + errorThrown+"-------st-------"+xhr.statusText+"---RE:--"+xhr.responseText+"-----st------"+xhr.status);
}
}); 展开
1个回答
展开全部
$.ajax({
//要用post方式
type: "Post",
//方法所在页面和方法名
url: "http://test.peiwoapi.com:8920/report/list?uid=1&page=1&gender=3&sign=0c44ee473ab5362dae57b45575521bd0&callback=callback",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
alert("success");
},
error: function(err) {
alert("5454"+err.code);
}
});
试试我的这个方式,关掉异步,用json不用jsonp
//要用post方式
type: "Post",
//方法所在页面和方法名
url: "http://test.peiwoapi.com:8920/report/list?uid=1&page=1&gender=3&sign=0c44ee473ab5362dae57b45575521bd0&callback=callback",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
alert("success");
},
error: function(err) {
alert("5454"+err.code);
}
});
试试我的这个方式,关掉异步,用json不用jsonp
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询