📜  如何在 firebase 中获取 doc id - 无论代码示例

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

代码示例3
constructor(private afs: AngularFirestore) {}

getQuestions(){
return this.afs
      .collection('questions')
      .valueChanges({ idField: 'qId' })
}