1
我有以下幾點:
$.ajax(options)
.then(function (response) {
// success
}, function (response, a, b) {
// fail
})
.always(function (output, status, xhr) {
// xhr is always null here
});
此前,xhr
是可用的。我如何使用最新版本的jQuery訪問它?
你使用的是什麼版本的jQuery? –
@DeyvisonSouto 3.2.0 – SB2055
你用任何東西了「於是」設置?我認爲使用.then時回調的簽名與使用舊學校$ .ajax調用相比是不同的。 – Culme