我尝试获取时间戳,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正常工作?
添加回答
举报
0/150
提交
取消