如何从Firestore Node.js获取时间戳格式数据

时间:2019-12-10 13:55:24

标签: javascript node.js google-cloud-firestore

我将日期保存为

this

在Cloud Firestore中

如何在Node.js中以日期格式获取它?

1 个答案:

答案 0 :(得分:1)

从Firestore获取时间戳时,它们属于以下类型:

enter image description here

要将其转换为Node.js时间戳,可以使用.toDate()函数。

例如,对于如下文档:

enter image description here

我们可以使用类似的东西:

db.collection('[COLLECTION]').doc('[DOCUMENT]').get().then(function(doc) {
  console.log(doc.data().[FIELD].toDate());
});

,输出将是:

2019-12-16T16:27:33.031Z