Firebase ReactJS不返回文档

时间:2020-06-05 03:19:13

标签: javascript reactjs firebase google-cloud-firestore

var db=firebase.firestore()
db.collection('sp')
.get()
.then(snapshot=>{
  console.log(snapshot)
})
.catch(err=>console.log(err))

该代码应该将文档作为对象返回,但返回的是奇怪的东西。

The result on console

1 个答案:

答案 0 :(得分:1)

通过snapshot方法获得的thenQuerySnapshot。要检查其内容,应使用为其定义的方法和属性。

例如,getting data上的文档中包含以下示例:

db.collection("cities").where("capital", "==", true)
    .get()
    .then(function(querySnapshot) {
        querySnapshot.forEach(function(doc) {
            // doc.data() is never undefined for query doc snapshots
            console.log(doc.id, " => ", doc.data());
        });
    })
    .catch(function(error) {
        console.log("Error getting documents: ", error);
    })

如果我们将此代码应用于您的代码,它将变成:

var db=firebase.firestore()
db.collection('sp')
.get()
.then(snapshot=>{
    snapshot.forEach(function(doc) {
        // doc.data() is never undefined for query doc snapshots
        console.log(doc.id, " => ", doc.data());
    });
})
.catch(err=>console.log(err))