添加相应成功标准响应

This commit is contained in:
2025-05-07 15:02:56 +08:00
parent cdd7630feb
commit 22d05974a6
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { CallHandler, ExecutionContext, Injectable, NestInterceptor } from "@nestjs/common";
import { Observable } from "rxjs";
import { map } from "rxjs/operators";
@Injectable()
export class ResponseInterceptor implements NestInterceptor {
intercept(context: ExecutionContext, next: CallHandler<any>): Observable<any> | Promise<Observable<any>> {
return next.handle().pipe(
map(data => ({
statusCode: 200,
message: '请求成功',
data,
})),
);
}
}