Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
139 views
in Technique[技术] by (71.8m points)

javascript - How handle error in promise await and not break another promise?

I have async function:

 async getLayers() {
     let arr = [];
     try {
     let thematicLayers = await new ThematicLayers(this.userRoles).get();
     let customLayers = await new CommonLayers(this.userRoles).get();

     arr.push(thematicLayers);
     arr.push(customLayers);

     } catch(err) {
        console.log('_________________');
        console.log(err);
     }
}

If at least one promise returns exception it comes to catch(). How to run await new ThematicLayers and await new CommonLayers independencty, now await new CommonLayer await await new ThematicLayers.

And how to handle case if one promise if succuss, another not?

question from:https://stackoverflow.com/questions/65942161/how-handle-error-in-promise-await-and-not-break-another-promise

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

use Promise.all https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Global_Objects/Promise/all

 Promise.all([
    new ThematicLayers(this.userRoles).get(),
    new CommonLayers(this.userRoles).get()
 ]).then(value =>
 {
    console.log(value);
    // your code
 }, reason =>
 {
    console.log(reason)
    // your code
 });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...