gpt4 book ai didi

javascript - Firestore 如何从 firestore 文档中获取 key

转载 作者:行者123 更新时间:2023-11-30 11:22:06 25 4
gpt4 key购买 nike

使用下面的查询,我可以获得文档和 doc.data().name 以获取键“name”的值。我想获得该文档中的所有 key 。我怎样才能得到它?

var docRef = db.collection("cities").doc("SF");

docRef.get().then(function(doc) {
if (doc.exists) {
console.log("Document data:", doc.data());

//**I want to get all keys in the document here.**

} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
}).catch(function(error) {
console.log("Error getting document:", error);
});

最佳答案

基于我的示例 answer ,你可以这样做:

docRef.get().then(function(doc) {
if (doc.exists) {
let json = doc.data();
console.log("Document data:", json);
console.log("Document keys:", Object.keys(json));
Object.keys(json).forEach((name) => {
console.log(name, json[name]);
});
} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
}).catch(function(error) {
console.log("Error getting document:", error);
});

关于javascript - Firestore 如何从 firestore 文档中获取 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49449842/

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