javascript - 如何处理 NestJS 中的 TypeORM 错误?

标签 javascript node.js typescript nestjs typeorm

我想创建一个自定义异常过滤器来处理不同类型的 TypeORM 错误。我查了一下 TypeORM error classes ,并且 TypeORM 中似乎没有像 MongoError 这样的东西.

我想做一些类似于 1FpGLLjZSZMx6k's answer 的东西,这就是我到目前为止所做的事情。

import { QueryFailedError } from 'typeorm';

@Catch(QueryFailedError)
export class QueryFailedExceptionFilter implements ExceptionFilter {
  catch(exception: QueryFailedError, host: ArgumentsHost) {
    const context = host.switchToHttp();
    const response = context.getResponse<Response>();
    const request = context.getRequest<Request>();
    const { url } = request;
    const { name } = exception;
    const errorResponse = {
      path: url,
      timestamp: new Date().toISOString(),
      message: name,
    };

    response.status(HttpStatus.BAD_REQUEST).json(errorResponse);
  }
}

如果我需要捕获另一个错误,例如 EntityNotFoundError,我必须编写相同的代码,这是一项非常繁琐的任务。

如果我可以通过如下所示的单个过滤器来处理错误,那就太好了。有什么想法吗?

@Catch(TypeORMError)
export class EntityNotFoundExceptionFilter implements ExceptionFilter {
  catch(exception: MongoError, host: ArgumentsHost) {
    switch (exception.code) {
      case some error code:
        // handle error
    }
  }
}

最佳答案

要处理不同类型的 TypeOrm 错误,如果异常构造函数与任何 TypeOrm 错误(来自 node_modules\typeorm\error)匹配,您可以切换/区分异常构造函数。此外,(任何异常(exception))代码将提供实际发生的数据库错误。请注意,@catch() 装饰器为空,以便捕获所有错误类型。

import { ArgumentsHost, Catch, ExceptionFilter, HttpException, HttpStatus, Logger } from '@nestjs/common';
import { Request, Response } from 'express';
import { QueryFailedError, EntityNotFoundError, CannotCreateEntityIdMapError } from 'typeorm';
import { GlobalResponseError } from './global.response.error';

@Catch()
export class GlobalExceptionFilter implements ExceptionFilter {
    catch(exception: unknown, host: ArgumentsHost) {
        const ctx = host.switchToHttp();
        const response = ctx.getResponse<Response>();
        const request = ctx.getRequest<Request>();
        let message = (exception as any).message.message;
        let code = 'HttpException';

        Logger.error(message, (exception as any).stack, `${request.method} ${request.url}`);

        let status = HttpStatus.INTERNAL_SERVER_ERROR;
        
        switch (exception.constructor) {
            case HttpException:
                status = (exception as HttpException).getStatus();
                break;
            case QueryFailedError:  // this is a TypeOrm error
                status = HttpStatus.UNPROCESSABLE_ENTITY
                message = (exception as QueryFailedError).message;
                code = (exception as any).code;
                break;
            case EntityNotFoundError:  // this is another TypeOrm error
                status = HttpStatus.UNPROCESSABLE_ENTITY
                message = (exception as EntityNotFoundError).message;
                code = (exception as any).code;
                break;
            case CannotCreateEntityIdMapError: // and another
                status = HttpStatus.UNPROCESSABLE_ENTITY
                message = (exception as CannotCreateEntityIdMapError).message;
                code = (exception as any).code;
                break;
            default:
                status = HttpStatus.INTERNAL_SERVER_ERROR
        }

        response.status(status).json(GlobalResponseError(status, message, code, request));
    }
}


import { Request } from 'express';
import { IResponseError } from './response.error.interface';

export const GlobalResponseError: (statusCode: number, message: string, code: string, request: Request) => IResponseError = (
    statusCode: number,
    message: string,
    code: string,
    request: Request
): IResponseError => {
    return {
        statusCode: statusCode,
        message,
        code,
        timestamp: new Date().toISOString(),
        path: request.url,
        method: request.method
    };
};


export interface IResponseError {
    statusCode: number;
    message: string;
    code: string;
    timestamp: string;
    path: string;
    method: string;
}

注意:从新版本的typeorm开始,EntityNotFoundErrorCannotCreateEntityIdMapError的导入将如下

import { QueryFailedError } from 'typeorm';
import { EntityNotFoundError } from 'typeorm/error/EntityNotFoundError';
import { CannotCreateEntityIdMapError } from 'typeorm/error/CannotCreateEntityIdMapError';

关于javascript - 如何处理 NestJS 中的 TypeORM 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58993405/

相关文章:

java - AXAX刷新JSP或Spring MVC页面的简单方法?

node.js - 在node.js中打开套接字时发送数据

node.js - 使用 NPM 从私有(private)存储库安装包

javascript - Node.js:自定义命令行界面

javascript - 路由到 Angular 2 中的特定 Id 路径

javascript - 提高 Threejs 中的凹凸贴图质量

javascript - 无法使用 JavaScript 关闭 chrome 浏览器中的选项卡

javascript - typeof document ['domConfig'] 在 Firefox 中出现错误

reactjs - 为什么 React.FunctionComponenent 优于传统的函数定义?

Angular 抛出错误 "Couldn' t 跟随符号链接(symbolic link)”