gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 00:25:59 38 4
gpt4 key购买 nike

我想创建一个自定义异常过滤器来处理不同类型的 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/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com