我正在创建一个待办事项列表,我想使用户能够将任务添加到列表中。但是,我在获取文档ID时遇到了麻烦。
这是我尝试过的2种方法:
this.currentUser = firebase.auth().currentUser;
const currentUserUid = this.currentUser.uid;
let collectionPath = "/userProfile/" + currentUserUid + "/list";
this.list = firebase.firestore().collection(collectionPath).doc()
const listId = this.list.id;
this.ref = firebase.firestore().collection(collectionPath)
.doc(listId).collection("task")
不幸的是,这种方式创建了一个新文档,而不是将任务存储到列表中。
另一种方法是:
this.currentUser = firebase.auth().currentUser;
const currentUserUid = this.currentUser.uid;
let collectionPath = "/userProfile/" + currentUserUid + "/list";
this.list = firebase.firestore().collection(collectionPath)
.get().then((snapshot) => {
snapshot.docs.forEach(doc => {
return doc.data();
})
})
const listId = this.list.id;
this.ref = firebase.firestore().collection(collectionPath)
.doc(listId).collection("task")
但是它说listId是不确定的。
这是我的firebase结构:
User(Collection) - User1...
|
List(Collection) - List1...
|
(Expected)Task(Collection) - task1...
艾米的建议吗?非常感谢!
答案 0 :(得分:0)
为了获取文档的ID,建议您看看此answer。同样,this可能会有所帮助。 至于向文档添加子集合,建议您阅读此question和以下documentation。
让我知道这些方法是否有帮助。