45

Firebase Firestore 指南展示了如何在集合快照中迭代文档forEach

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

我以为它也会支持map,但事实并非如此。如何映射快照?

4

6 回答 6

90

答案是:

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

Firestore 的参考页面显示docs快照上的属性。

docs non-null 非空数组 firebase.firestore.DocumentSnapshot

QuerySnapshot 中所有文档的数组。

于 2017-10-06T21:18:59.237 回答
9

厌倦了 Firestore 在他们的课堂上返回东西或其他东西。这是一个助手,如果你给它 a dbcollection它将返回该集合中的所有记录作为解析实际数组的承诺。

const docsArr = (db, collection) => {
  return db
    .collection(collection)
    .get()
    .then(snapshot => snapshot.docs.map(x => x.data()))
}

;(async () => {
  const arr = await docsArr(myDb, myCollection)
  console.log(arr)
})()
于 2020-02-06T20:24:23.473 回答
5
// https://firebase.google.com/docs/firestore/query-data/get-data
const querySnapshot = await db.collection("students").get();

// https://firebase.google.com/docs/reference/js/firebase.firestore.QuerySnapshot?authuser=0#docs
querySnapshot.docs.map((doc) => ({ id: doc.id, ...doc.data() }));
于 2020-12-04T11:00:28.833 回答
4

这是另一个例子

var favEventIds = ["abc", "123"];

const modifiedEvents = eventListSnapshot.docs.map(function (doc) {
    const eventData = doc.data()
    eventData.id = doc.id
    eventData.is_favorite = favEventIds.includes(doc.id)

    return eventData
})
于 2019-12-31T22:06:33.640 回答
0

我发现通过使用map并获取您的文档 ID 的更好方法如下:

从我希望在构造函数中更新的对象数组开始:

    this.state = {
                allmystuffData: [
                {id: null,LO_Name: "name", LO_Birthday: {seconds: 0, nanoseconds: 0},    
                LO_Gender: "Gender", LO_Avatar: "https://someimage", LO_Type: "xxxxx"},],
    };

在我的功能中执行以下操作

    const profile = firebase
        .firestore()
        .collection("users")
        .doc(user.uid)
        .collection("stuff")
        .get()
        .then( async (querySnapshot) => {
            console.log("number of stuff records for ",user.uid," record count is: ", 
            querySnapshot.size);
            const profile = await Promise.all(querySnapshot.docs.map( async (doc) => {
                const stuffData = doc.data()
                stuffData.id = doc.id
                condole.log("doc.id => ",doc.id)
                return stuffData
        }));
    
        this.setState({allmystuffData: profile});
        })
        .catch(function (error) {
            console.log("error getting stuff: ", error);
        })

在此示例中,我使用查询快照读取集合中的所有文档,并在它们之间进行映射。promise.all 确保在将所有记录呈现到屏幕之前返回所有记录。我将文档 ID 添加到返回的数组中每个对象的“id”元素中,然后使用 setstate 将状态数组替换为查询返回的数组。

于 2020-09-26T20:21:27.297 回答
0

你可以试试这个

FirebaseFirestore.instance
  .collection('Video_Requests')
  .get()
  .then((QuerySnapshot querySnapshot){querySnapshot.docs.forEach((doc){
    print(doc.data());
   });
});
于 2021-07-16T13:29:48.177 回答