@ViewChild('fileInput') fileInput: any; ... uploadFile() { this.uploader.uploadAll(); this.fileInput.nativeElement.value = ''; }
<input #fileInput id="file" type="file" ng2FileSelect [uploader]="uploader" (change)="uploadFile()"/>