大家好,我是 Angular js 的新手。我有一个模块“ngApp”,它依赖于一个模块“ng-main”。我想处理可能在“ng-main”模块的配置块中引发的错误和异常。我创建了一个新模块“ng-error”并让“ngApp”依赖于这个模块来处理错误和异常,但它有点没有捕捉到它。
索引.html
<script type="text/javascript">
angular.module('ngApp', ['ng-error', 'ng-main']);
</script>
ngErrors.js
angular.module('ng-error',[])
.config(function($provide) {
$provide.factory('$exceptionHandler', function($injector) {
return function (exception, cause) {
console.log(exception);
// display error message
};
});
});
ngMain.js
angular.module('ng-main', ['ng-test'])
.config(function(){
// code with error
});
如果此配置块中发生任何错误,它将完全失败,但我想手动处理这些错误。对我的代码有任何想法或评论吗?