Nest的核心概念是提供一种体系结构,它帮助开发人员实现层的最大分离,并在应用程序中增加抽象。
主要有三个核心概念:模块Module, 控制器Controller, 服务与依赖注入 Provider Dependency injection
constructor(private readonly catsService: CatsService) {}
其他概念:
// 实现一个带有`@Injectable()`装饰器的类打印中间件 import { Injectable, NestMiddleware, MiddlewareFunction } from ‘@nestjs/common‘; @Injectable() export class LoggerMiddleware implements NestMiddleware { resolve(...args: any[]): MiddlewareFunction { return (req, res, next) => { console.log(‘Request...‘); next(); }; } }
使用有两种方式:全局注册和局部模块注册。
// 全局注册 async function bootstrap() { // 创建Nest.js实例 const app = await NestFactory.create(AppModule, application, { bodyParser: true, }); // 注册中间件 app.use(LoggerMiddleware()); // 监听3000端口 await app.listen(3000); } bootstrap();
// 模块局部注册 export class CnodeModule implements NestModule { configure(consumer: MiddlewareConsumer) { consumer .apply(LoggerMiddleware) .with(‘ApplicationModule‘) .exclude( { path: ‘user‘, method: RequestMethod.GET }, { path: ‘user‘, method: RequestMethod.POST }, ) .forRoutes(UserController); } }
全局注册影响全部路由,局部注册只是影响当前路由下的路由。
原文:https://www.cnblogs.com/pjl43/p/9826748.html