我有以下功能:-
uploadPhoto() {
var nativeElement: HTMLInputElement = this.fileInput.nativeElement;
this.photoService.upload(this.vehicleId, nativeElement.files[0])
.subscribe(x => console.log(x));
}
但是在 nativeElement.files[0] 上,我收到一个打字稿错误,“对象可能是 ‘null’”。任何人都可以帮我解决这个问题吗?
我试图将 nativeElement 声明为空值,但没有成功。
感谢您的帮助和时间。
原文由 JMon 发布,翻译遵循 CC BY-SA 4.0 许可协议
files
被定义为FileList | null
所以它可以是null
。您应该检查
null
(使用if
)或使用“非空断言运算符”(!
)如果你不是null
:笔记:
“非空断言运算符”不会执行任何运行时检查,它只是告诉编译器您有特殊信息并且您知道
nativeElement.files
null
。如果
nativeElement.files
是null
在运行时会产生错误。这不是其他语言的安全导航运算符。