Gibt es ein Java-Endlich-Analogon in jQuery AJAX-Aufrufen? Ich habe diesen Code hier. In meinem Fall löse ich immer eine Ausnahme, aber ich möchte IMMER, dass sie zur then () -Methode wechselt.
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");
});
Ich habe versucht, done () , complete () und das andere always () zu verwenden , aber nichts scheint zu funktionieren.
Hier ist JSFiddle:
always
...