|
发表于 2015-11-16 17:33:30
|
显示全部楼层
我也遇到这个问题,麻烦帮助一下。我是在页面直接请求一个asp.net mvc的地址:
服务端返回:Json(lst.ToArray(), JsonRequestBehavior.AllowGet);
手机端面代码:
$.ajax({
"type" : "post",
"async" : false,
"dataType" : "jsonp",
"url" : url,
"jsonp":"callback",
"jsonpCallback":"oncallback",
"data" : {
"personName" : uid,
// 序列化参数JSON字符串
"password" : pwd
},
"success" : function(data, textStatus) {
debugger;
if (data == "Failed") {
alert("用户名或密码错误");
} else if (success) {
success(data);
}
},
"error" : function(XMLHttpRequest, textStatus, errorThrown) {
debugger;
}
});
目前的问题是:服务端能够响应请求并返回,但手机端总是进error。提示错误:"oncallback was not called"
|
|