我想根据任何请求将本地化代码发送到我的微服务。有没有机会在 nestjs 中不使用 body 来做到这一点?像标题或元数据之类的东西。
有点像
@Post('/route') async updateTransaction(@Body() body: DTO) { return lastValueFrom(this.rmqClient.send('pattern', body, {headers: {localization: en}})); }