var db=firebase.firestore()
db.collection('sp')
.get()
.then(snapshot=>{
console.log(snapshot)
})
.catch(err=>console.log(err))
该代码应该将文档作为对象返回,但返回的是奇怪的东西。
答案 0 :(得分:1)
通过snapshot
方法获得的then
是QuerySnapshot
。要检查其内容,应使用为其定义的方法和属性。
例如,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))