如何重设和允许使用ng2-file-upload上传文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何重设和允许使用ng2-file-upload上传文件相关的知识,希望对你有一定的参考价值。

我正在使用ng2-file-upload上传文件。对我来说很好。我需要处理服务器端的错误并重置文件上传器。我该如何实现?以下是我正在使用的代码

HTML

        <div class="progress progressbar" style="height:10px;">
          <div class="progress-bar" role="progressbar" [ngStyle]=" 'width': uploader.progress + '%' "></div>
        </div>
        <button type="button" class="btn btn-warning btn-s button_gray" (click)="uploader.cancelAll()" [disabled]="!uploader.isUploading">
        <span class="glyphicon glyphicon-ban-circle"></span> Cancel
      </button>
        <button type="button" class="btn btn-danger btn-s button_gray" (click)="uploader.clearQueue()" [disabled]="!uploader.queue.length">
        <span class="glyphicon glyphicon-trash"></span> Remove
      </button>
        <button type="button" class="btn btn-primary btn-s" (click)="uploader.authToken=authToken ;uploader.uploadAll()" [disabled]="!uploader.getNotUploadedItems().length">
        <span class="glyphicon glyphicon-upload"></span> Upload
      </button>

Typescript

    ngOnInit() 
        this.uploader.onAfterAddingFile = (file) => 
          file.withCredentials = false;
          if (this.target) this.target.value = '';
        ;
        this.uploader.onErrorItem = (item, response, status, headers) => this.onErrorItem(item, response, status, headers);
        this.uploader.onSuccessItem = (item, response, status, headers) => this.onSuccessItem(item, response, status, headers);
      

  let data = JSON.parse(response); //success server response
    console.log(data)
    this.showSnackBar('Successfully Uploaded file.');
    this.router.navigate(['/result'])
  

  onErrorItem(item: FileItem, response: string, status: number, headers: ParsedResponseHeaders): any 
    let error;
    if (response != undefined && response.length > 0)
      JSON.parse(response); //error server response
    else
      error = response;

    console.log(error)
    this.showSnackBar('Error on Upload the file.');
  

现在,如果出现任何故障,那么我将无法再次上传文件。

答案

我认为您已经解决了问题,但我仍然想为社区共享整个解决方案

1-将其添加到组件中

import  ViewChild, ElementRef  from "@angular/core";

2-将此声明添加到组件中

@ViewChild("dummyID",  static: false ) 
myInputVariable: ElementRef; 

html文件中的3-,为特定元素提供ID(我使用#dummyID)

<input #dummyID type="file" ng2FileSelect [uploader]="uploader" />

4-然后,您可以到达组件中所需的元素,最佳实践是在ng2-file-upload的onWhenAddingFileFailed方法中使用它

this.uploader.onWhenAddingFileFailed = item => 
//some code
//some code

 this.myInputVariable.nativeElement.value = "";
;

以上是关于如何重设和允许使用ng2-file-upload上传文件的主要内容,如果未能解决你的问题,请参考以下文章

springcloud 通过后端去下载和预览文件,要重设跨域允许

如何重设Ubuntu的登录密码

ng2-file-upload:文件 maxFileSize 在 Angular 2 中使用 typescript 限制为 < 1MB

ng2-file-upload 500 内部服务器问题

ng2-file-upload 使用记录

重设 macOS 用户帐户的密码,你们会吗?