gpt4 book ai didi

javascript - 由于数据库调用,在 Promise 中使用异步。我该如何修复这个反模式?

转载 作者:行者123 更新时间:2023-12-03 00:16:32 25 4
gpt4 key购买 nike

我有一个 Firebase 函数,可以从数据库发回数据。问题是有时我必须返回 3 个集合的所有数据,有时只需要 1 个集合,有时需要 2 个集合。但这是一种反模式。如何改进我的代码?

现在我正在创建一个函数,它返回一个 promise ,其中我使用await 来获取db 值,并将其包装在try{} block 中。

module.exports.getList = (uid, listType) => new Promise(async (resolve, reject) => {
let returnValue = [];
try {
if (listType.contains("a")) {
const block = await db.collection('alist').doc(uid).get();
returnValue.push(block);
}
if (listType.contains("b")) {
const like = await db.collection('blist').doc(uid).get();
returnValue.push(like);
}
if (listType.contains("c")) {
const match = await db.collection('clist').doc(uid).get();
returnValue.push(match);
}
} catch (e) {
return reject(e);
}
return resolve(returnValue);});

我应该如何修改此代码片段才能不成为反模式?或者不是因为try-catch block ?

最佳答案

您可以将 getList 函数设置为 async,而无需 new Promisetry/catch :

module.exports.getList = async (uid, listType) => {
const returnValue = [];
if (listType.contains("a")) {
const block = await db.collection('alist').doc(uid).get();
returnValue.push(block);
}
if (listType.contains("b")) {
const like = await db.collection('blist').doc(uid).get();
returnValue.push(like);
}
if (listType.contains("c")) {
const match = await db.collection('clist').doc(uid).get();
returnValue.push(match);
}
return returnValue;
};

调用它将返回一个 Promise,如果存在异步错误,则该 Promise 会拒绝并显示错误,否则它将解析为所需的数组。

请注意,除非有充分的理由await串行调用,否则您可以使用Promise.all来代替,以便请求并行发出,并使整个过程中代码简洁了很多:

module.exports.getList = (uid, listType) => Promise.all(
['alist', 'blist', 'clist']
.filter(name => listType.contains(name[0]))
.map(name => db.collection(name).doc(uid).get())
);

关于javascript - 由于数据库调用,在 Promise 中使用异步。我该如何修复这个反模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54513175/

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