gpt4 book ai didi

javascript - xmlhttprequest(xhr) 对象 xhr.onerror 和 xhr.upload.onerror 的区别

转载 作者:搜寻专家 更新时间:2023-10-31 23:08:55 25 4
gpt4 key购买 nike

这可能是一个非常明显的问题,但请解释一下 xhrxhr.upload 之间的区别是什么?

我的用例是我正在将文件上传到服务器,但假设服务器出现故障。在这种情况下,我应该处理 xhr.onerror 还是 xhr.upload.onerror

基本上,如问题中所述,何时使用 xhr 以及何时使用 xhr.upload where xhr = new XMLHttpRequest();

另一个新手问题,它与 GET 与 POST/PUT 的处理方式有关吗?

最佳答案

xhr.onerror当网络级别出现故障时触发。如果错误仅存在于应用程序级别,例如发送 HTTP 错误代码,则 onload 仍会触发。您需要在 onreadystatuschange 处理程序中明确测试返回的状态代码。

其中 xhr.upload.onerror当你尝试上传时触发一些事情,这基本上是应用程序级功能,就像 xhr.upload.Onprogress .

此上传始终依赖于 ajax post 方法。

关于javascript - xmlhttprequest(xhr) 对象 xhr.onerror 和 xhr.upload.onerror 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12596432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com