- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有来自文档示例( https://docs.nestjs.com/techniques/authentication )的 JwtStrategy 类:
@Injectable()
export class JwtStrategy extends PassportStrategy(Strategy) {
constructor(
private readonly authService: AuthService,
private readonly configService: ConfigService,
) {
super({
jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(),
secretOrKey: this.configService.getSecretKey,
});
}
// ...
}
this
在调用 super() 之前我收到一个错误。但是我还是想用 configService 来获取秘钥。
最佳答案
只需删除 this.
, 看这里:
secretOrKey: configService.getSecretKey
configService
已作为参数传递。
关于typescript - NestJS JwtStrategy 使用 configService 传递秘钥,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50977202/
我是 NestJs 世界的新手。据我所知,我导入了 JwtStrategy 中所需的一切。我不知道哪里出了问题。有人可以帮我解决这个问题吗? 就我提到的文档而言,无论何时我们想要在模块中使用任何实体,
我正在尝试制作一个 MEAN Stack(Nodejs、Mongo、Angular 应用程序),现在我正在尝试制作 API 身份验证和 token 。我正在学习本教程 https://www.yout
我有来自文档示例( https://docs.nestjs.com/techniques/authentication )的 JwtStrategy 类: @Injectable() export c
我从 https://devdactic.com/restful-api-user-authentication-1/ 学习了教程。但是我在这部分有错误 passport.use(new JwtStr
我收到此错误“TypeError: JwtStrategy requires a secret or key”,我不知道如何修复它。我能做些什么来修复它? (node:46218) MaxListen
我已尝试替换 JwtStrategy 实现 User.findOne({id: jwt_payload.id} 与 User.getUserById(jwt_payload._doc._id, (er
我正在尝试创建一个网络应用程序,但在尝试运行几个文件时出现此错误: throw new TypeError('JwtStrategy requires a secret or key');
我是一名优秀的程序员,十分优秀!