gpt4 book ai didi

node.js - 如何在 NestJS GraphQL 解析器中访问 Response 对象

转载 作者:行者123 更新时间:2023-12-04 16:37:42 25 4
gpt4 key购买 nike

我如何获得通行证 @Res()进入我的 graphql 解析器?
这不起作用:

@Mutation(() => String)
login(@Args('loginInput') loginInput: LoginInput, @Res() res: Response) {
return this.authService.login(loginInput, res);
}

最佳答案

@Res()用于 HTTP 请求。访问 res您首先需要确保将对象添加到 context使用 context: ({ req, res }) => ({ req, res }) 用于 graphql在 GraphqlModule的选项,然后你可以使用 @Context() ctx获取上下文和 ctx.res获取响应对象

关于node.js - 如何在 NestJS GraphQL 解析器中访问 Response 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67392575/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com