在angularjs中是否可以在一个地方添加全局异常处理程序?因此,即使您错过为任何代码添加异常处理程序,用户也会收到正确的消息。 E.g出了点问题。
答案 0 :(得分:4)
angular.module("app")
.factory("$exceptionHandler", function() {
return function (exception, cause) {
//exception handling here
};
});
来自here