我正在尝试检索文档中的所有集合名称,因为我在1个文档中有多个集合。
另外,此代码我正在尝试返回此特定集合的名称。 不知道该怎么做。
ngOnInit() {
this.foodCollection = this.afs.doc(this.item+this.document).collection(this.collectionName);
this.foods = this.foodCollection.snapshotChanges().pipe(map(actions => {
return actions.map(a => {
const data = a.payload.doc.data() as food;
const id = a.payload.doc.id;
const name = a;
return { id, data, name};
});
}));
}