我试图让一个变量通过控制器和装饰器prefix
的方法参数出现。path
我知道Nest Router,但我宁愿尽可能避免使用它。
/*************************
* eneity.config.ts
*************************/
import { registerAs } from '@nestjs/config';
export default registerAs('cat', () => ({
cat: {
urlPrefix: 'cat',
paramName: 'meow',
}
})
);
/*************************
* cat.module.ts
*************************/
import entityConfig from 'config/entity.config';
import { CatController } from 'entities/cat/cat.controller';
import { ConfigModule, ConfigService } from '@nestjs/config';
@Module({
imports : [ConfigModule.forFeature(entityConfig),],
providers : [ConfigService],
controllers: [CatController],
})
export class CatModule {}
/*************************
* cat.controller.ts
*************************/
import { Controller, Request, Get } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
@Controller(`${this.urlPrefix}/cat`) // <<<<< Here
export class CatController {
private readonly urlPrefix;
private readonly paramName;
constructor(
private readonly configService: ConfigService,
) {
this.urlPrefix = this.configService.get<string>('cat.urlPrefix'); // animal
this.paramName = this.configService.get<string>('cat.paramName'); // meow
}
@Get(`snowflake/:${this.paramName}`) // <<<<< Here
getProfile(@Request() req) {
return 'meowww';
}
}
我试着按原样做,它一直给我“未定义”,即使如果我将它记录到构造函数中的控制台,它也会显示出来。我希望能够使用配置来设置这些常量。
最后,我想要的路线是:localhost/animal/cat/snowflake/meow
.
编辑:我尝试使用普通变量,它可以工作。显然问题在于我对 NestJS 的配置包的实现。