extjs 文件上传 - 如何处理与互联网或网络断开连接的情况
我们正在使用 extjs 表单将文件上传到文件服务器(我们有一个 FileUploadHandler.ashx 来处理 bakcend 端的文件)
我的问题是,如果在上传过程中用户意外断开连接,extjs 是否可以处理/抛出异常网络/互联网
提前致谢。
We are using an extjs form to upload our files to fileserver ( we have an FileUploadHandler.ashx to handle the file on the bakcend side )
My question is, can extjs handle / throw an exception if accidentally during the upload process the user was disconnected from the network / internet
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须在服务器端处理这个问题。我不相信 ExtJS 可以处理这个问题,它只能处理来自服务器的响应。因此,如果您的服务器抛出 500 或其他错误代码,表明请求不成功,您可以处理该问题。
You'd have to handle that on the server side. I don't believe ExtJS can handle that, it can only handle responses from the server. So, if your server throws a 500 or another error code that indicates that the request was unsuccessful, you can handle that.