Firebase Firestore 允许您一次性检索文档集合以及每个文档的子集合,但这需要使用递归函数来处理嵌套的子集合。以下是一个示例,展示了如何使用 JavaScript 和 Firebase SDK 来实现这一点。
首先,确保您已经安装了 Firebase SDK 并初始化了 Firebase 应用:
// 引入 Firebase SDK
import * as firebase from 'firebase/app';
import 'firebase/firestore';
// 初始化 Firebase 应用
const firebaseConfig = {
apiKey: 'your-api-key',
authDomain: 'your-auth-domain',
projectId: 'your-project-id',
storageBucket: 'your-storage-bucket',
messagingSenderId: 'your-messaging-sender-id',
appId: 'your-app-id'
};
firebase.initializeApp(firebaseConfig);
const db = firebase.firestore();
接下来,创建一个递归函数来检索文档集合以及每个文档的子集合:
async function fetchCollections(db, collectionPath) {
const collectionRef = db.collection(collectionPath);
const snapshot = await collectionRef.get();
const collections = [];
snapshot.forEach(doc => {
const data = doc.data();
const document = { id: doc.id, ...data };
collections.push(document);
if (data.subCollections && data.subCollections.length > 0) {
data.subCollections.forEach(subCollection => {
collections.push(...fetchCollections(db, `${collectionPath}/${doc.id}/${subCollection}`));
});
}
});
return collections;
}
现在,您可以使用这个函数来检索文档集合以及每个文档的子集合:
fetchCollections(db, 'your-collection-path').then(collections => {
console.log(collections);
});
请注意,这种方法可能会导致大量的读取操作,因此请确保您的 Firestore 数据库的读取限制不会被超出。此外,递归函数可能会导致栈溢出错误,因此请确保您的数据结构不会过于复杂。
领取专属 10元无门槛券
手把手带您无忧上云