技术:Angular 7,Firestore。
我可以将文档添加到集合中,但是我需要在文档中添加字段类型的时间戳,并且这样做很麻烦。
我的尝试:
item.datePosted = firebase.firestore.FieldValue.serverTimestamp();
我需要在Firestore中使用类型为timestamp的时间戳,但它会为我的datePosted字段不断添加类型字符串。
答案 0 :(得分:0)
时间戳是日期和时间的组合,类似于javascript var date = new Date()
,在Typescript中,您可以将日期数据类型定义为item.datePosted : Date = new Date()
;