📅  最后修改于: 2023-12-03 15:38:30.930000             🧑  作者: Mango
在Angular 9中,您可以通过以下步骤使用输入标签文件类型重置所选文件:
<input type="file" #fileInput (change)="resetFileInput()">
import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-file-input',
templateUrl: './file-input.component.html',
styleUrls: ['./file-input.component.css']
})
export class FileInputComponent {
@ViewChild('fileInput') fileInput: ElementRef;
resetFileInput() {
this.fileInput.nativeElement.value = '';
}
}
以上是在Angular 9中使用输入标签文件类型重置所选文件的完整步骤。 通过实现此操作,您可以轻松地重置常用于上传文件的输入字段,从而增强了应用程序的用户交互性。