在Firebase中获取文档ID可以通过以下步骤实现:
var db = firebase.firestore();
db.collection("your_collection").get().then((querySnapshot) => {
querySnapshot.forEach((doc) => {
console.log(doc.id);
});
});
db.collection("your_collection").doc("your_document").get().then((doc) => {
console.log(doc.id);
});
db.collection("your_collection").where("field", "==", "value").get().then((querySnapshot) => {
querySnapshot.forEach((doc) => {
console.log(doc.id);
});
});
在上述代码中,your_collection
是你要查询的集合名称,your_document
是你要查询的文档名称,field
是你要匹配的字段名称,value
是你要匹配的字段值。
通过以上步骤,你可以在Firebase中获取文档ID。请注意,这只是获取文档ID的基本示例,你可以根据自己的需求进行进一步的查询和操作。
领取专属 10元无门槛券
手把手带您无忧上云