Angular Firestore Get Document By Id Code Example
Example 1: firestore get id of new document
async function addCity(newCity) { const { id } = await db.collection("cities").add(newCity) console.log("the new city's id:", id) }
Example 2: get doc id firestore
const racesCollection: AngularFirestoreCollection<Race>; return racesCollection.snapshotChanges().map(actions => { return actions.map(a => { const data = a.payload.doc.data() as Race; data.id = a.payload.doc.id; return data; }); });
Comments
Post a Comment