在 jQueryAJAX 调用中是否存在 Java 的“ finally”类似?我这里有密码。在我的 一直都是我抛出一个异常,但我总是希望它去 那么(())方法。
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");
});
我试过使用 完成(),完整()和另一个 总是,但似乎没有工作。
下面是 JSFiddle: