Error错误异常
模块可以单独提供自己的 Error 错误异常
定义Error
定义 Error 分为两个步骤,以模块a-demo
为例:
1. 定义Error枚举
src/suite/a-demo/modules/a-demo/src/config/errors.ts
typescript
export enum Errors {
'ErrorTest' = 1001,
}
- 约定:错误码 > 1000
2. 定义Error语言资源
英文:src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts
typescript
export default {
ErrorTest: 'This is a error test',
};
中文:src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts
typescript
export default {
ErrorTest: '这是一个错误测试',
};
使用Error
可以通过 Scope 实例直接抛出模块的 Error 错误异常
typescript
export class TestA {
protected async __init__() {
this.scope.error.ErrorTest.throw();
}
}
- 动图演示
跨模块使用Error
typescript
import type { ScopeModuleADemo } from 'zova-module-a-demo';
export class TestA {
@UseScope('a-demo')
scopeModuleADemo: ScopeModuleADemo;
protected async __init__() {
this.scopeModuleADemo.error.ErrorTest.throw();
}
}