How to tell Angular 2 to not block the whole application when it encounters an exception?
I'm not sure if it's even possible, because Google didn't enlighten me on this.
But it seems critical to any single page web application.
Whenever Angular 2 encounters an exception and throws an error, the complete application becomes unresponsive.
I know that in JavaScript
try {
doSomething();
}
catch(err) {
handleErrors(err);
}
might solve the problem.
But I just want to know if there is any Angular specific solution or workaround?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…