This question already has answers here:
How to list subcollections in a Cloud Firestore document
(3个答案)
2年前关闭。
我从React Native项目连接数据库。
在我的Firestore数据库
我尝试使用代码:
我在
任何帮助,将不胜感激。提前致谢。
(3个答案)
2年前关闭。
我从React Native项目连接数据库。
在我的Firestore数据库
Buildings/Taipei
中,我想获取所有集合ID,例如201
202
203
我尝试使用代码:
const db = firebaseApp.firestore();
db.collection('Buildings').doc('Taipei')
.get()
.then(doc => {
console.log('get doc is =>');
console.log(doc);
}).catch(error => {
console.log(`error is ${error}`);
});
我在
doc
中看不到任何集合ID。任何帮助,将不胜感激。提前致谢。
最佳答案
不幸的是,移动/Web客户端当前无法执行您想做的事情。
资料来源:List Subcollections of Document
关于javascript - 如何从Firestore上的文档获取所有集合ID?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52164182/
10-11 14:09