📌  相关文章
📜  获取集合 firestore 中的所有文档 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:19.456000             🧑  作者: Mango

代码示例3
async getMarker() {
    const snapshot = await firebase.firestore().collection('events').get()
    return snapshot.docs.map(doc => doc.data());
}