我尝试获取时间戳,createTime
并updateTime
如DocumentSnapshot 文档中所述。到目前为止,我已经完成了以下工作:
已成功将 Firestore 与我的 javascript webproject 连接
读写数据工作
那是我试图获取时间戳的代码:
db.collection("users").doc("user1").get().then(doc => {
if (doc.exists) {
console.log(doc.createTime); // -> undefined (?)
console.log(doc.updateTime); // -> undefined (?)
console.log(doc.readTime); // -> undefined (?)
console.log(doc.exists); // -> true (works)
console.log(doc.id); // -> "user1" (works)
}
}).catch(error => {
console.log("Error getting document:", error);
});
为什么文档时间戳方法不起作用,而其他方法喜欢exists或id正常工作?
回首忆惘然
相关分类