gpt4 book ai didi

firebase - 多个 Firestore 查询,单个 promise /回调

转载 作者:行者123 更新时间:2023-12-03 18:15:40 30 4
gpt4 key购买 nike

我了解 Firestore 不支持查询的逻辑 OR。
我的想法是创建多个查询并在客户端合并结果。
我正在开发一个新闻应用程序,我正在尝试获取所有包含我的用户兴趣标签(例如技术、音乐等)的文章
一个普通用户有 20 个标签,所以我将提出 20 个不同的请求。

有没有人有链接多个请求并在所有结果到达时返回唯一 promise 的经验。?

我正在使用 js sdk

我的数据结构:

文章(合集)

-article (document)
--id: 10
--time: 1502144665
--title: "test title"
--text: "test text"
--tags(obj)
---technology: 1502144665,
---politics: 1502144665,
---sports: 1502144665

所以我需要创建多个数据库请求,如下所示。
user.tags = ["technology","politics","sports","architecture","business"];

for (var i = 0; i < user.tags.length; i++) {
db.collection('articles').where(user.tags[i], '>', 0).orderBy(user.tags[i]))
.get()
.then(() => {
// ... push to article array
});)
}

我试图弄清楚如何在每个请求完成时创建一个 promise /回调。

最佳答案

您可以将每个数据库访问 Promise 保存在一个数组中,然后使用 Promise.all()获取在每个数据库访问完成时解析的 Promise。 (这段代码没有经过测试,它可能包含一些语法错误,但它演示了这个想法。)

user.tags = ["technology","politics","sports","architecture","business"];

var dbPromises = [];
for (var i = 0; i < user.tags.length; i++) {
dbPromises.push(
db.collection('articles')
.where(user.tags[i], '>', 0)
.orderBy(user.tags[i])
.get()
);
}

Promise.all(dbPromises)
.then(() => {
// ... push to article array
};

关于firebase - 多个 Firestore 查询,单个 promise /回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47552876/

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