我有以下内容:
$.ajax(options)
.then(function (response) {
// success
}, function (response, a, b) {
// fail
})
.always(function (output, status, xhr) {
// xhr is always null here
});
以前,xhr
可用。如何使用最新版本的jQuery访问它?
答案 0 :(得分:1)
您可以使用jquery 3.2
实现以下内容。以前的一些ajax方法已被新版本的jquery弃用。
var jqxhr = $.ajax( "yourUrl" )
.done(function() {
console.log("success");
})
.fail(function() {
console.log("error");
})
.always(function(xhr, status,output ) {
console.log(xhr);
});