У меня есть идентификатор документа, и я пытаюсь получить данные документа по идентификатору:
export class MyComponent implements OnInit {
customerDoc: AngularFirestoreDocument<Customer>;
customer: Observable<Customer>;
constructor(private afs: AngularFirestore) {
const id = this.route.snapshot.paramMap.get('id');
this.customerDoc = afs.collection<Customer>('customers/'+id);
this.customer = this.customerDoc.snapshotChanges();
}
}
Но это ничего не возвращает.