jQuery AJAX 调用中是否存在 Java“终于”类似物?我这里有这段代码。我总是抛出一个异常,但是我总是希望它转到then()方法。
call.xmlHttpReq = $.ajax({
url : url,
dataType : 'json',
type : 'GET'
}).always(function(processedDataOrXHRWrapper, textStatus, xhrWrapperOrErrorThrown) {
throw "something";
}).then(function() {
alert("i want to always run no matter what");
});
我曾尝试使用done()、complete()和另一个always(),但似乎没有任何效果。
这是 JSFiddle :