我在Firestore子集合中检索文档时遇到错误。 querySnapshot返回一个空数组,其中文档应位于该数组中。以下是我的代码和Firestore设置。 ref定义为
var ref = db.collection("LiveRooms").doc(this.roomCode);
test() {
console.log("Test invoked");
this.ref
.collection("Songs")
.get()
.then(function (querySnapshot) {
console.log(querySnapshot)
querySnapshot.forEach(function (doc) {
console.log("doc")
// doc.data() is never undefined for query doc snapshots
console.log(doc.id, " => ", doc.data());
});
});
},