gpt4 book ai didi

angular - 在 Angular 方法中循环 AngularFirestoreCollection Observable

转载 作者:太空狗 更新时间:2023-10-29 19:33:57 24 4
gpt4 key购买 nike

我将 Angularfire2 与新的 Firestore 数据库一起使用。在我的方法中,我正在执行这样的查询:

const questionsRef = this.afs.collection('questions', ref => ref.where('category', '==', category).limit(10));

现在我需要在循环中获取结果,以便我可以操作数据并使用该结果的值在不同的集合中创建一个新文档。

这是从集合中返回的文档之一的结构:

{
"description": "Test question",
"category": "dOULqW4jMkC4E4iopOyk",
"answers": [
{
"description": "test answer",
"correct": true
},
{
"description": "test answer 2",
"correct": false
}
]
}

我想复制从 questionsRef 返回的结果,但为每个名为 "selected": false 的答案添加一个新字段。

我意识到我还需要以某种方式等待所有数据加载完毕,但我不确定该怎么做。

最佳答案

我现在在 FB 系列上经历了同样的事情。我认为接近它的想法有所转变,但我仍在努力解决它。这是一个 SO post关于它,但我只是像这样遍历集合:

      var questionsRef = this.afs.collection('questions', ref => {
return ref.where('category', '==', category).limit(10);
});

var questionsCol = questionsRef.snapshotChanges().pipe(
map(actions => actions.map(a => {
return a.payload.doc.data(); // get id using a.payload.doc.id
}))
);

questionsCol.forEach(doc => {
// operate on the doc here...
});

希望对您有所帮助。

关于angular - 在 Angular 方法中循环 AngularFirestoreCollection Observable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46879886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com