我有一个看起来像这样的错误处理程序:
@Injectable() export class GlobalErrorHandler implements ErrorHandler {
constructor(private injector: Injector) { }
handleError(error) {
const errorService = this.injector.get(ErrorService);
const location = this.injector.get(LocationStrategy);
const url = location instanceof PathLocationStrategy
? location.path() : '';
StackTrace.fromError(error).then(stackframes => {
const stackString = stackframes
.splice(0, 20)
.map((sf) => {
return sf.toString();
}).join('\n');
const errorObject: IError = {
errorMessage: error.messagen,
stackTrace: stackString,
path: url
};
// Display something to user
errorService.setError(errorObject);
// TODO: send to server
});
// IMPORTANT: Rethrow the error otherwise it gets swallowed
throw error;
}
}
我从:Global error handling angular 2得到这个
我的问题是,当我在开发中运行它时,它会按预期工作,其中包含组件的有意义的堆栈跟踪:
例如:
ngOnInit()@webpack:///src/app/person/userdetail-page/userdetail-page.component.ts:29:19 __tryOrSetError()@webpack:///~/rxjs/Subscriber.js:247:0 this.__tryOrSetError()@webpack:///~/rxjs/Subscriber.js:187:0 _next()@webpack:///~/rxjs/Subscriber.js:125:0 next()@webpack:// /~/rxjs/Subscriber.js:89:0 notifyNext()@webpack:///~/rxjs/operator/switchMap.js:124:0
但是在使用 angular cli 进行生产时:ng build --prod --aot
输出是相同的错误是:
未定义 TypeError 的属性“toString”:无法在 e.__ tryOrSetError(http: //xxx.azurewebsites.net/vendor.1cd9b81fc017fd7eac16.bundle.js:835:16880 ) 在 e.next
所以这对我来说不是一个有意义的堆栈跟踪。如果我能得到导致问题的组件,为什么像在我的开发环境中一样??!
您如何处理生产站点中的错误?如果我在代码中的每个地方都尝试捕获,我可以抛出特定类型的错误,但在没有尝试捕获块的地方?
Stacktrace 应该始终显示导致错误的组件,而不仅仅是显示捆绑中未定义的 tostring!