本文整理汇总了TypeScript中@angular/core.ErrorHandler.handleError方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ErrorHandler.handleError方法的具体用法?TypeScript ErrorHandler.handleError怎么用?TypeScript ErrorHandler.handleError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular/core.ErrorHandler
的用法示例。
在下文中一共展示了ErrorHandler.handleError方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: reportInvalidActions
function reportInvalidActions(
output: EffectNotification,
reporter: ErrorHandler
) {
if (output.notification.kind === 'N') {
const action = output.notification.value;
const isInvalidAction = !isAction(action);
if (isInvalidAction) {
reporter.handleError(
new Error(
`Effect ${getEffectName(
output
)} dispatched an invalid action: ${action}`
)
);
}
}
}
示例2: error
error(value: any, ...rest: any[]) {
const message = [value, ...rest].join(' ');
this.errorHandler.handleError(message);
}
示例3: error
error(error: Error) {
this.errorHandler.handleError(error);
}
示例4: reportErrorThrown
function reportErrorThrown(output: EffectNotification, reporter: ErrorHandler) {
if (output.notification.kind === 'E') {
reporter.handleError(output.notification.error);
}
}
示例5:
this._ngxsExecutionStrategy.leave(() => this._errorHandler.handleError(error))
示例6:
}, error => {
this.errorHandler.handleError(error);
});