【发布时间】:2022-02-15 04:30:29
【问题描述】:
我正在关注有关身份验证主题的 NestJS 文档,但由于某种原因,该程序无法运行。我实际上是在复制和粘贴所有代码,并执行所有 CLI 命令,但它一直给我这个错误:
Error: Nest can't resolve dependencies of the LocalAuthGuard. Please make sure that the "optios available in the current context.
Potential solutions:
- If AuthModuleOptions is a provider, is it part of the current AppModule?
- If AuthModuleOptions is exported from a separate @Module, is that module imported within App
@Module({
imports: [ /* the Module containing AuthModuleOptions */ ]
})
AuthModuleOptions 不在代码中的任何位置,那它可能是什么?老实说,我不知道。
【问题讨论】: