上传文件时处理网络问题

时间:2013-09-16 13:00:15

标签: java javascript html gwt file-upload

这是到目前为止生成的html(使用GWT作为前端),到目前为止我复制了GWT FileUpload类。

<input type="file" id="input" onchange="handleFiles(this.file)">

HandleFileUploadServet.java的帮助下正常工作,因为java是后端。

使用addSubmitCompleteHandler

处理此问题
form.addSubmitCompleteHandler(new SubmitCompleteHandler() {..

相当于

 .submit(function(){
   //handle file response
})

工作正常。

以下是问题,上传文件时如果互联网断开连接,浏览器不会抛出error/exception/response

我想通知用户,存在网络问题。

但浏览器不断提交表单而不是从该状态返回。

任何提示?

感谢您的时间。

1 个答案:

答案 0 :(得分:0)

如果事件为空,请检查处理程序吗?

form.addSubmitCompleteHandler(new FormPanel.SubmitCompleteHandler() {
        public void onSubmitComplete(SubmitCompleteEvent event) {
            if(event != null){
                   Window.alert("Upload OK!");
            }else
                   Window.alert("Upload fail");
    });

但我认为如果您遇到网络问题,则不会触发SubmitCompleteEvent。

解决方案可以是在提交文件时制作计时器:

public class ViewWidget {

Form form;
Timer timer = new Timer() {
     @Override
     public void run() {
         Window.alert("Troubles with upload! Try again!");
     }
 };

 public ViewWidget(){
     form.addSubmitHandler(new SubmitHandler() {

        @Override
        public void onSubmit(SubmitEvent event) {
            timer.schedule(10000);
        }
    });

     form.addSubmitCompleteHandler(new SubmitCompleteHandler() {

        @Override
        public void onSubmitComplete(SubmitCompleteEvent event) {
            //Cancel the timer
            timer.cancel();

            if(event != null){
                //Do your Stuff
                Window.alert("Upload Ok !");
            }else
                Window.alert("Upload Fails");
        }
    });
 }

我不尝试代码,但应该可以使用。

希望它有所帮助。