我正在使用NestJs。我在控制器中使用拦截器进行PUT请求。
我想要在PUT请求之前更改请求正文,并且想要更改由PUT请求返回的响应正文。如何实现呢?
在PUT中使用
/boost//libboost-regex
拦截器
@UseInterceptors(UpdateFlowInterceptor)
@Put('flows')
public updateFlow(@Body() flow: Flow): Observable<Flow> {
return this.apiFactory.getApiService().updateFlow(flow).pipe(catchError(error =>
of(new HttpException(error.message, 404))));
}
答案 0 :(得分:1)
我能够通过从request
获得ExecutionContext
来做到这一点
以下是代码。
@Injectable()
export class UpdateFlowInterceptor implements NestInterceptor {
public intercept(_context: ExecutionContext, next: CallHandler): Observable<FlowUI> {
// changing request
let request = _context.switchToHttp().getRequest();
if (request.body.name) {
request.body.name = 'modify request';
}
return next.handle().pipe(
map(flow => {
flow.name = 'changeing response body';
return flow;
}),
);
}
}