我正在使用 PhoneGap 构建一个 Android 应用程序。使用 jQuery 或 Zepto,我可以使用 $.ajax 调用来调用网站 API。但是,当网站返回 401(未经授权)响应时,似乎没有来自 ajax 调用的回调——“成功”、“错误”或“完成”都没有被调用。
请注意,当响应为 200 或 500 时,相同的代码可以正常工作。
我将 Zepto 1.0rc1 和/或 jQuery 1.7.2 与 PhoneGap 1.6.1 一起使用。
function make_base_auth(user, password) {
var tok = user + ':' + password;
var hash = btoa(tok);
return "Basic " + hash;
}
$('#button').on('touchstart', function() {
console.log("UPLOAD --- ");
$.ajax({
url: 'https://mywebsite/api/v1.0/test/?ts=' + new Date().getTime(),
type: 'GET',
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', make_base_auth('username', 'password'));
},
success: function(data, status, xhr) {
console.log("AJAX: SUCCESS: " + data);
$('h1').text("AJAX!!");
},
error: function(xhr, errortype, error) {
console.log("AJAX: FAIL: " + errortype + " - " + error);
$('h1').text("AJAX FAIL");
},
complete: function() {
console.log("--- Complete");
}
});
return false;
});