I have several promises that I need to resolve before going further.
Promise.all(promises).then((results) => {
// going further
});
Is there any way I can have the progress of the Promise.all
promise?
From the doc, it appears that it is not possible. And this question doesn't answer it either.
So:
- Don't you agree that this would be useful? Shouldn't we query for this feature?
- How can one implement it manually for now?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…