阅读(3739)
赞(10)
AngularJS 1
2019-02-20 16:09:48 更新
1. 接入插件
将fundebug.min.js放在head标签中;也可以使用NPM、RequireJS、动态加载等其他方式接入。
2. 配置exceptionHandler
// 在exceptionHandler中调用fundebug.notifyError
angular
.module('exceptionOverwrite', [])
.factory('$exceptionHandler', function()
{
return function(exception, cause)
{
fundebug.notifyError(exception);
};
});
// exceptionOverwrite添加到模块依赖中
angular.module('myApp', [
...,
...,
'exceptionOverwrite'
])
参考
← React