我在编写来自nestjs异常过滤器的自定义http响应时遇到问题
我正在使用nest fastify(不是express)
我正在创建捕获UserNotFoundException的自定义异常过滤器,如下所示:
@Catch(UserNotFoundException)
export class UserNotFoundExceptionFilter implements ExceptionFilter {
catch(exception: UserNotFoundException, host: ArgumentsHost) {
const errorResponse = new ErrorResponse<string[]>();
const response = host.switchToHttp().getResponse();
errorResponse.message = 'unauthorized exception'
errorResponse.errors = [
'invalid username or pass'
];
response.status(401).json(errorResponse)
}
}
我不断收到 response.status(...).json() 不是函数。
[Nest] 5400 - 05/17/2020, 00:27:26 [ExceptionsHandler] response.status(...).json is not a function +82263ms
TypeError: response.status(...).json is not a function
我知道我必须为某种类型的响应作者指定该响应的类型(例如:来自快递的响应)。
我尝试从 express 导入该 响应对象,并将响应变量的类型更新为 Response(express),如下所示:
import {Response} from 'express';
const response = host.switchToHttp().getResponse<Response>();
一切顺利。
但我不想在我的应用程序中添加一些快速的东西,我只想使用nestjs fastify。你们知道任何可以从快递中替换此响应对象的类吗?或者,如果你有另一种更聪明的方法来解决这个问题,它也会有所帮助
谢谢大家