我正在对我的服务器执行一些 AJAX 请求。两种情况下请求类型和参数完全相同,但来自服务器的响应类型不同。
案例一:
这是 Titanium 中使用钛网络 http 客户端的实现。
var xhr = Ti.Network.createHTTPClient({
onload : function() {
alert('sucess');
},
onerror : function(e) {
alert('error');
},
timeout : 5000
});
var main_url = "http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876";
xhr.open('GET', main_url);
xhr.send();
它完美地返回了响应,似乎对我有用。
案例2:
这是使用 JQuery AJAX 方法在本地文件中的实现。
var main_url = "http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876";
$.ajax({
url: main_url,
type: "GET",
dataType: "json",
timeout: 5000,
success: function(data, status, xmlstatus) {
alert("success");
},
error: function(data, status, xmlstatus){
if (t === "timeout") {
alert("timeout");
} else {
alert("some error");
}
}
});
但是由于浏览器中的跨域策略,它返回
XMLHttpRequest cannot load http://localhost:3000/shops/560/login.json?api_token=some_token&customer[phone_number]=9988776655&customer[pin]=9876. Origin null is not allowed by Access-Control-Allow-Origin.
所以,为了避免这种情况,我添加了另一个参数
&callback = ?
但它仍然返回
alert('some error');
无法弄清楚事情哪里出错了。当 URL、参数、类型一切都一样。
- - - - - - - -编辑 - - - - - - -
挖掘 iniside 给了我回应:
console.log(data) => parsererror
和
console.log(xmlstatus) => jQuery164023596301255747676_1335786441349 was not called