What does Dojo consider a XHR request error?

廉价感情. 提交于 2019-11-30 08:37:19

问题


When doing AJAX through Dojo we can pass two callbacks, one to execute after a successfull request and one to execute after an error:

dojo.xhr("GET",{
    url: myURL,
    content: messageContents,
    load: function(returnData, ioArgs){
        //This is called on success
    },
    error: function(returnData, ioArgs){
        //This is called on failure
    }
});

I couldn't find in the documentation what is defined as an error. I'd guess anything with a return code >= 400 but I'm not sure.


回答1:


Generally speaking, an unsuccessful HTTP response code. The determination is made by calling dojo._isDocumentOk which as you'll see basically accepts 2xx and 304 plus some browser-quirk stuff.



来源:https://stackoverflow.com/questions/5721949/what-does-dojo-consider-a-xhr-request-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!