我有一个node/mongodb应用程序,它具有以下功能:
const myFuncDoesALotOfThings = async () => {
try{
await CollectionA.deleteMany({});
await CollectionB.deleteMany({});
const allCollectionsC = CollectionsC.find({'country': "UK"});
for await (const coll of allCollectionsC){
if(coll.city === 'London'){
await doSomeMongoDbOperation();
}
}
}
catch(exception){
console.log("exception",exception);
//here I think I want to resume
}
}
我关心的是await doSomeMongoDbOperation();
的失败,如何确保单个await doSomeMongoDbOperation();
上的异常不会停止迭代?
1条答案
按热度按时间vd8tlhqk1#
在API周围 Package 另一个try catch,这样它就不会停止迭代。