我无法从 Android 4.2 设备中的异步 Ajax 调用中获得响应。每次超时
xhr = $.ajax({
type: 'GET',
url: url,
async: true,
contentType: "application/json",
timeout : 20000
});
xhr.done(function(data, status, xhr) {//This never gets invoked.});
它总是超时。但如果它async : false
能够在最多 2 秒内得到响应。