简体   繁体   中英

Collection Document Id in firebase

How I get the generated document ID of a collection in Firestore?

集合和ID的截图

If you want to get the id of a Firestore doc, call doc.id . This is not in doc.data and confused me as well.

const docs = await getDocs(collection(db, 'collection_name'));
docs.forEach((doc) => {
  console.log(doc.id);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM