我的云函数有问题。基本上,我在Firestore的每个文档中都有一个时间戳对象,但我无法将其转换为秒。
我使用 .seconds
属性,如我在时间戳对象文档中看到的那样,但不起作用(返回未定义)。
console.log(postDoc.data().timestamp);
返回:
Thu Jan 17 2019 17:10:45 GMT+0000 (UTC)
我需要 Firestore 文档中时间戳对象的秒数。谢谢建议。
尝试将其解析为 Date 对象。 var myDate = new Date(postDoc.data().timestamp)
.一旦你这样做了,你应该能够做标准的方法,如.toLocaleDateString()
、.getMonth()
等。