我正在为我的整个MEAN.js
项目实现一个记录器。我有一个运行良好的服务器端记录器,并且我设置了一个端点来接收 POST 请求,但有一个例外来记录客户端错误。我正在使用StackTrace.js
进行客户端错误日志记录,但遇到一些错误;现在我正在使用 StackTrace 的错误堆栈解析器,但仍然收到错误。我正在使用 Angular $exceptionHandler上的装饰器来实现这一点:
$provide.decorator("$exceptionHandler",
function($delegate, traceService, $log, $window) {
return function(exception, cause) {
$delegate(exception, cause);
try {
var errorMessage = exception.toString();
var stackTrace = traceService.
parse(exception).
then(function(stackFrames) {
$.ajax({
type: 'POST',
url: '/logger',
contentType: 'application/json',
data: angular.toJson({
url: $window.location.href,
message: errorMessage,
type: 'exception',
stackFrace: stackFrames,
cause: cause || ''
})
}).fail(function() {
$log.warn('POST request failed');
});
}).catch(function(error) {
$log.warn('Error StackTrace');
});
} catch (loggingError) {
$log.warn('Error server-side logging failed');
$log.log(loggingError);
}
};
});
traceService
是一个 Angular 服务,充当 StackTrace/error-stack-parser 函数的代理。 traceService.parse
相当于ErrorStackParser.parse
。 traceService
实现为:
angular.module('core').factory('traceService', function() {
return {
parse: ErrorStackParser.parse
};
});
我已经把这个装饰器代码放在 Angular 应用程序引导程序上,我正在通过在控制器上抛出错误来进行测试。当我运行应用程序时,我在客户端控制台上收到此错误:
Error server-side logging failed
angular.js:13708 TypeError: this.parseV8OrIE is not a function
at Object.ErrorStackParser$$parse [as parse] (error-stack-parser.js:70)
at application.js:22
at invokeLinkFn (angular.js:9816)
at nodeLinkFn (angular.js:9215)
at compositeLinkFn (angular.js:8510)
at publicLinkFn (angular.js:8390)
at lazyCompilation (angular.js:8728)
at updateView (viewDirective.ts:278)
at Object.configUpdatedCallback [as configUpdated] (viewDirective.ts:226)
at configureUiView (view.ts:164)
这似乎是错误堆栈解析的问题;我似乎找不到任何关于这个问题的文章,所以我确定这是我做错了什么,我正在测试的方式或其他原因。任何人都可以提供一些关于为什么失败的见解吗?
编辑
我按照Caramiriel的评论修改了代码。似乎我需要将错误堆栈解析器中的所有函数添加到我的服务中。这是traceService
:
angular.module('core').factory('traceService', function() {
return {
parse: ErrorStackParser.parse,
parseV8OrIE: ErrorStackParser.parseV8OrIE,
extractLocation: ErrorStackParser.extractLocation
};
});
现在我收到此错误:
TypeError: StackFrame is not a constructor
at Object.<anonymous> (http://localhost:3000/lib/error-stack-parser/error-stack-parser.js:105:24)
at Array.map (native)
at _map (http://localhost:3000/lib/error-stack-parser/error-stack-parser.js:22:26)
at Object.ErrorStackParser$$parseV8OrIE [as parseV8OrIE] (http://localhost:3000/lib/error-stack-parser/error-stack-parser.js:95:20)
at Object.ErrorStackParser$$parse [as parse] (http://localhost:3000/lib/error-stack-parser/error-stack-parser.js:70:29)
at http://localhost:3000/application.js:22:11
at invokeLinkFn (http://localhost:3000/lib/angular/angular.js:9816:9)
at nodeLinkFn (http://localhost:3000/lib/angular/angular.js:9215:11)
at compositeLinkFn (http://localhost:3000/lib/angular/angular.js:8510:13)
at publicLinkFn (http://localhost:3000/lib/angular/angular.js:8390:30)
看起来您正在使用错误堆栈解析器,而不依赖于堆栈帧项目。
如果使用 npm 或 bower,您将自动获得该依赖项。