gpt4 book ai didi

javascript - 将 StackTrace.js 与 Angular.js 一起使用

转载 作者:搜寻专家 更新时间:2023-11-01 04:29:59 24 4
gpt4 key购买 nike

我正在为我的整个 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.parsetraceService 实现为:

angular.module('core').factory('traceService', function() {
return {
parse: ErrorStackParser.parse
};
});

我已将此装饰器代码放在 Angular 应用程序 Bootstrap 上,并通过在 Controller 上抛出错误来进行测试。当我运行该应用程序时,我在客户端控制台上收到此错误:

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)

这似乎是 error-stack-parse 的问题;我似乎找不到关于这个问题的任何文章,所以我确定这是我做错的事情,我正在测试的方式或其他东西。任何人都可以提供一些关于失败原因的见解吗?

编辑

我根据 Caramiriel 的评论修改了代码。似乎我需要将 error-stack-parser 中的所有函数添加到我的服务中。这是 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)

最佳答案

看起来您正在使用 error-stack-parser 而不依赖于 stackframe 项目。

如果您使用 npm 或 bower,您将自动获得该依赖项。

关于javascript - 将 StackTrace.js 与 Angular.js 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38334865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com