假设我将这个最小的数据库存储在 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()) )
)