来自模板变量如何在ts中检索上传的文件值

时间:2017-10-28 10:29:54

标签: javascript angular typescript angular-forms

从模板变量想要获取上传文件。

<input type="file" (change)="uploadPhoto()" #fileInput>

属性

@ViewChild('fileInput') fileInput:ElementRef;

在ts中我应该如何获取上传文件

upload (){
    var nativeElement:HTMLInputElement= this.fileInput.nativeElement;
    console.log("native", nativeElement.files[0]);//**TS2531: Object is possibly 'null'.**
}

0 个答案:

没有答案