我在Angular4应用程序中定义了一个客户错误处理程序
@Injectable()
export class CustomErrorHandler implements ErrorHandler {
handleError(error) {
switch (error.type) {
case 'custom': doTheThing(); defaultErrorHandling(); //?
default: defaultErrorHandling(); // ?
}
}
}
如何在需要时将缰绳传递给默认的错误处理程序?
答案 0 :(得分:0)
****
* *
* *
****
答案 1 :(得分:0)
只是控制台将其错误:
console.error(error)