首先定义body的类型:
export class CreateCatDto {
name: string;
age: number;
breed: string;
}
然后就是使用@Body装饰器来访问body携带的信息:
import { Body } from '@nestjs/common';
@Post()
async create(@Body() createCatDto: CreateCatDto) {
// console.log('name: ', createCatDto.name);
return 'This action adds a new cat';
}