團隊成員要把它放到我們的項目Javascript:如何停止多個jQuery ajax錯誤處理程序?
$(function() {
$("body").bind("ajaxError", function(event, XMLHttpRequest, ajaxOptions, thrownError){
alert(thrownError);
});
}
不過,我想我的剿錯誤之一(因爲這將是噪聲,不需要驗證)
function blah() {
...
errFunc = function(event, xhr, opts, errThrown) {
//what could I do here?
//event.stopImmediatePropagation()?
}
$.ajax({
url : '/unimportant_background_refresh',
type : 'GET',
data : { },
dataType : 'json',
success : updateBackgroundStuff,
error : errFunc, // Suppresses error message.
});
}
如何停止抓住所有發生的錯誤嗎?我可以在錯誤函數中做些什麼,比如{ event.StopPropogation(); }
或者我是否必須找出一些機制來讓catch有選擇性地忽略所有的東西?
:
來自http://stackoverflow.com/questions/7436195/disabling-some-jquery-global-ajax-event-handlers-for-a-request –