ServiceError.filter.ts 721 B

1234567891011121314151617181920212223242526
  1. import { Catch, Inject, MidwayEnvironmentService } from '@midwayjs/core';
  2. import { Context } from '@midwayjs/koa';
  3. import { ServiceError } from '../error/CustomerError.error';
  4. import { pick } from 'lodash';
  5. const pickList = ['errmsg', 'errcode'];
  6. const devList = ['name', 'stack'];
  7. // 指定那些异常来这里处理
  8. @Catch([ServiceError])
  9. export class CustomErrorFilter {
  10. @Inject()
  11. ctx: Context;
  12. @Inject()
  13. envService: MidwayEnvironmentService;
  14. async catch(err: Error, ctx: Context) {
  15. const pl = pickList;
  16. const is_dev = this.envService.isDevelopmentEnvironment;
  17. if (is_dev) {
  18. pl.push(...devList);
  19. }
  20. const obj = pick(err, pl);
  21. const result: any = obj;
  22. return result;
  23. }
  24. }