我正在使用 Firebase 函数来提取用户数据。因为 Firestore 查询的“IN”查询限制为 10,所以我必须在循环中运行异步标注。
我不能在循环中执行异步标注,因此我必须将标注同步推送到数组中,然后调用await Promise.all()
以在循环外运行标注。
当我这样做时,我收到来自 Firestore 的错误
TypeError:无法读取未定义的属性“减少”
我可以看到结果值是一个 Promise。所以我一定是写错reduce
了Promise.all()
……
如果我可以看到价值是一个承诺,为什么承诺是作为undefined
?
const buildChatMatches = async ({id, matches, singles}) => {
const existing = singles || {};
if (Array.isArray(matches) && matches.length > 0) {
let numberOfDozens = matches.length / 10;
let results = [];
let i = 0;
while (i < Math.ceil(numberOfDozens)) {
let sliceMatches = matches.slice(i * 10, (i + 1) * 10);
const query = admin
.firestore()
.collection(USER_COLLECTION_NAME)
.where("id", "in", sliceMatches);
results.push(query.get());
i++;
}
let allResults = await Promise.all(results);
return allResults.docs.reduce((map, doc) => {
map[doc.id] = pickUserInfo(doc.data(), existing[doc.id]);
return map;
});
}
return {};
};
感谢道格的回答:
let allResults = await Promise.all(results);
allResults.forEach(function(querySnapshot) {
for (let i in querySnapshot.docs) {
users.push(querySnapshot.docs[i]);
}
});