gpt4 book ai didi

database - 在 Firebase Firestore 中映射集合快照的项目

转载 作者:太空狗 更新时间:2023-10-30 01:39:23 25 4
gpt4 key购买 nike

Firebase Firestore Guides展示如何使用 forEach 迭代集合快照中的文档:

db.collection("cities").get().then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data());
});
});

我想它也会支持 map,但它不支持。如何映射快照?

最佳答案

答案是:

querySnapshot.docs.map(function(doc) {
# do something
})

The Reference page for Firestore显示快照上的 docs 属性。

docs non-null Array of non-null firebase.firestore.DocumentSnapshot

An array of all the documents in the QuerySnapshot.

关于database - 在 Firebase Firestore 中映射集合快照的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46614055/

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