Home > Article > Web Front-end > Why Is Awaiting a Promise Chain in Angular 6 an Anti-Pattern?
In Angular 6, it is considered an anti-pattern to await a promise chain, as exemplified by the following code:
await someFunction().then(result => { console.log(result); });
While this approach may seem innocuous, it can introduce subtle bugs and reduce maintainability.
Understanding the Issue
Ordinarily, awaiting a promise chain is redundant because someFunction(), if it returns a promise, is already awaiting its resolution. Therefore, the simplified code below achieves the same result:
const result = await someFunction(); console.log(result);
Potential Dangers
However, awaiting a promise chain can lead to unintended consequences:
Recommendation
To enhance code clarity and prevent potential issues, it is advisable to adhere to the following guidelines:
The above is the detailed content of Why Is Awaiting a Promise Chain in Angular 6 an Anti-Pattern?. For more information, please follow other related articles on the PHP Chinese website!