假设我在 Cloud Firestore 中存储了这个最小的数据库。我怎么能检索的名字subCollection1
和subCollection2
?
rootCollection {
aDocument: {
someField: { value: 1 },
anotherField: { value: 2 }
subCollection1: ...,
subCollection2: ...,
}
}
我希望能够从 中读取 id aDocument
,但在我查看get()
文档时只显示字段。
rootRef.doc('aDocument').get()
.then(doc =>
// only logs [ "someField", "anotherField" ], no collections
console.log( Object.keys(doc.data()) )
)