Closed ZhelinCheng closed 1 year ago
https://zhelin.me/post/523e5859795170ae/
控制器Controller @Controller() 装饰 使用 import { Controller, Get } from '@nestjs/common'; @Controller('cats') export class CatsController { @Get() findAll(): string { return 'This action returns all cats'; } } Providers/Services @Injectable() 装饰 使用 import { CatsService } from './cats.service'; // 构造函数参数可以使用 @Inject(CatsService) 装饰器 // 控制器 @Controller('cat') export class CatController { constructor( private readonly catService:
https://zhelin.me/post/523e5859795170ae/
控制器Controller @Controller() 装饰 使用 import { Controller, Get } from '@nestjs/common'; @Controller('cats') export class CatsController { @Get() findAll(): string { return 'This action returns all cats'; } } Providers/Services @Injectable() 装饰 使用 import { CatsService } from './cats.service'; // 构造函数参数可以使用 @Inject(CatsService) 装饰器 // 控制器 @Controller('cat') export class CatController { constructor( private readonly catService: