gpt4 book ai didi

node.js - 将日期保存到 Firebase Firestore Node.js

转载 作者:太空宇宙 更新时间:2023-11-03 22:59:44 25 4
gpt4 key购买 nike

我似乎在 Web/Javascript 文档中找不到任何有关将日期保存到 Firestore 的信息。在 Swift 中,我使用 NSDate 创建一个变量,然后 Firebase 能够将其作为日期对象存储在数据库中。 Node.js 中有类似的功能吗?我可以使用 date-and-time包或者 Node.js 中是否有对日期的 native 支持?

最佳答案

来自Firestore documentation on saving data of supported types :

var docData = {
stringExample: "Hello world!",
booleanExample: true,
numberExample: 3.14159265,
dateExample: admin.firestore.Timestamp.fromDate(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!");
});

关于node.js - 将日期保存到 Firebase Firestore Node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51345134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com