我似乎在Web / Javascript文档中找不到任何有关将日期保存到Firestore的信息。在Swift
中,我使用NSDate
创建了一个变量,然后Firebase能够将其作为日期对象存储在数据库中。 Node.js中有类似的功能吗?我可以使用date-and-time软件包还是Node.js中对Dates的本地支持?
答案 0 :(得分:3)
从Firestore documentation on saving data of supported types:
var docData = { stringExample: "Hello world!", booleanExample: true, numberExample: 3.14159265, dateExample: new Date("December 10, 1815"), arrayExample: [5, true, "hello"], nullExample: null, objectExample: { a: 5, b: { nested: "foo" } } }; db.collection("data").doc("one").set(docData).then(function() { console.log("Document successfully written!"); });