我正在使用Angular 4和Typescript编写Web应用程序。我需要上传文件的日期,并尝试使用File objects lastModified属性,但是Typescript给我一个错误
Property 'lastModified' does not exist on type 'File'.
如果我查看定义,它将lastModifiedDate作为一个属性。根据https://developer.mozilla.org/en-US/docs/Web/API/File/lastModifiedDate,该属性被破坏了。不过,我试过它,它在Chrome中工作,但在Safari中失败了。
如何使用Typescript中的File lastModified属性?
2条答案
按热度按时间bnl4lu3b1#
试试看
1zmg4dgp2#
也适用于lastModifiedDate,它已被弃用,但目前仍在Chrome中,并且是IE中的only option:
将通过使用lastModified或Assert它存在来防止TS2551
Property 'lastModifiedDate' does not exist on type 'File'. Did you mean 'lastModified'? ts(2551)
错误。