从模板变量想要获取上传文件。
<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'.**
}