监控 AngularJS 1
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'
])