编辑:
我已经查看了这个问题/答案How to exclude entity field from controller json
但是,如下所述 - 这是从所有查询中排除该字段(在尝试处理用户验证时,密码字段被排除在使用对没有 ClassSerializerInterceptor 的路由/控制器方法的 findOne 存储库查询
我在 nest.js / typeorm 中有一个实体;我试图从返回的 json 中排除密码字段,但不从我的服务中的任何存储库查询中排除密码字段。例如:
user.entity.ts
:
import { Entity, Column, PrimaryGeneratedColumn, CreateDateColumn,
UpdateDateColumn, ManyToOne } from 'typeorm';
import { Exclude } from 'class-transformer';
import { Account } from '../accounts/account.entity';
@Entity()
export class User {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
firstName: string;
@Column()
lastName: string;
@Column({
unique: true,
})
email: string;
@Column()
password: string;
}
auth.controller.ts
:
import { Controller, Post, Body, Request, Req, Get, UseInterceptors, ClassSerializerInterceptor, UseGuards } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
import { AuthService } from './auth.service';
import { IUserRequest } from '../../interfaces/user-request.interface';
@Controller('auth')
export class AuthController {
constructor(private readonly authService: AuthService) {}
@Post('/login')
async login(@Request() req: Request) {
const user = await this.authService.checkCredentials(req.body);
return this.authService.logUserIn(user.id);
}
@Get('/profile')
@UseGuards(AuthGuard())
@UseInterceptors(ClassSerializerInterceptor)
async profile(@Request() req: IUserRequest) {
const profile = await this.authService.getLoggedInProfile(req.user.id);
return { profile };
}
}
如果我Exclude()
像这样添加密码
@Exclude()
@Column()
password: string;
密码包含在响应中
如果我Column()
从密码中删除,
@Exclude()
password: string;
密码被排除在响应和所有内部查询之外,例如:
const user = await this.userRepository.findOne({ where: { id }, relations: ['account']});
这在nest.js 中是否可以使用ClassSerializerInterceptor
?
如果是这样,将不胜感激指向正确方向的指针。