$.ajax({
type: "post",
url: "https://xxxxxxx.xxxxxxxx",
data: {"appKey":k, "appSecret": s},
dataType: "json",
success: function (response) {
console.log(response);
if (response.code && response.code == "100000") {
//plus.storage.setItem('authentication',response.data);
bimtoken.token = response.data;
if(callback){
callback();
}
} else {
alert('安全验证失败,请联系管理员!2')
}
},
error: function (response) {
console.log(JSON.stringify(response));
alert('安全验证失败,请联系管理员!3')
}
});
返回的就是:{"readyState":0,"status":0,"statusText":"error"}
我把链接直接放到手机的浏览器里是可以访问到的,并且用IOS手机调试也是正常的,只有安卓真机调试时不行
请问这是什么问题???