我有包含用户ID的对象数组。
const userIDs= [{key: 'user_1'},{key: 'user_2'}, {key: 'user_3'}];
我想用cloud firestore中的用户数据填充它。
const userIDs= [
{key: 'user_1', name: 'name1'},
{key: 'user_2', name: 'name2'},
{key: 'user_3', name: 'name3'}
];
最快,最便宜的做法是什么?
这是我目前的做法。
const filledUsers = [];
for (let index in userIDs) {
const user = Object.assign({}, concatUsers[index]);
const snapshot = await usersRef.doc(user.key).get();
filledUsers.push(Object.assign(user, snapshot.data()));
})
答案 0 :(得分:3)
在for循环中使用await
效率很低。相反,最好在已执行的Promise.all
列表中使用ref.get()
,然后再使用await
。
如果您需要降低价格,则需要应用缓存。
请参阅下面的源代码。
// module 'db/users.js'
const usersRef = db.collection('users');
export const getUsers = async (ids = []) => {
let users = {};
try {
users = (await Promise.all(ids.map(id => usersRef.doc(id).get())))
.filter(doc => doc.exists)
.map(doc => ({ [doc.id]: doc.data() }))
.reduce((acc, val) => ({ ...acc, ...val }), {});
} catch (error) {
console.log(`received an error in getUsers method in module \`db/users\`:`, error);
return {};
}
return users;
}
// Usage:
//
// (await getUsers(['user_1', 'user_2', 'user_3']))