Nest 无法创建 AuthModule 实例
Nest cannot create the AuthModule instance
尝试在用户模型和群组之间建立链接时,出现错误:
我不明白为什么..
[Nest] 30312 - 06.12.2021, 20:53:42 LOG [NestFactory] Starting Nest application...
[Nest] 30312 - 06.12.2021, 20:53:42 ERROR [ExceptionHandler] Nest cannot create the AuthModule instance.
The module at index [1] of the AuthModule "imports" array is undefined.
Potential causes:
- A circular dependency between modules. Use forwardRef() to avoid it. Read more: https://docs.nestjs.com/fundamentals/circular-dependency
- The module at index [1] is of type "undefined". Check your import statements and the type of the module.
Scope [AppModule]
Error: Nest cannot create the AuthModule instance.
The module at index [1] of the AuthModule "imports" array is undefined.
app.module.ts https://pastebin.com/T9EC05gS
users.module.ts https://pastebin.com/inS044Xk
user.model.ts https://pastebin.com/wpyUs2SW
groups.module.ts https://pastebin.com/Jvr2Fuk3
group.model.ts https://pastebin.com/nBvkaEUt
auth.module.ts https://pastebin.com/MYQ2dw6y
auth.guard.ts https://pastebin.com/xDpQ8vwE
auth.service.ts https://pastebin.com/G9TzN3XF
提前致谢
更新:
添加时出现错误
@Expose()
@HasMany(() => Group)
groups: Group[];
到user.model.ts
在您的 auth.module.ts
文件中,而不是
import { UsersModule } from '../users';
尝试
import { UsersModule } from '../users/user.module';
我认为这些桶文件(index.ts
导出所有内容)不是一个好的模式,因为它在 NestJS 模块之间引入了循环导入。
1 auth.module.ts
进口 users/index.ts
(出口 user.module.ts
我猜)
2 groups.module.ts
进口 auth/index.ts
(出口 auth.module.ts
我猜)
3 user.model.ts
导入 groups/index.ts
那么你最终会得到 1 导入 3 和 3 导入 1。就是这个问题。
尝试在用户模型和群组之间建立链接时,出现错误:
我不明白为什么..
[Nest] 30312 - 06.12.2021, 20:53:42 LOG [NestFactory] Starting Nest application...
[Nest] 30312 - 06.12.2021, 20:53:42 ERROR [ExceptionHandler] Nest cannot create the AuthModule instance.
The module at index [1] of the AuthModule "imports" array is undefined.
Potential causes:
- A circular dependency between modules. Use forwardRef() to avoid it. Read more: https://docs.nestjs.com/fundamentals/circular-dependency
- The module at index [1] is of type "undefined". Check your import statements and the type of the module.
Scope [AppModule]
Error: Nest cannot create the AuthModule instance.
The module at index [1] of the AuthModule "imports" array is undefined.
app.module.ts https://pastebin.com/T9EC05gS
users.module.ts https://pastebin.com/inS044Xk
user.model.ts https://pastebin.com/wpyUs2SW
groups.module.ts https://pastebin.com/Jvr2Fuk3
group.model.ts https://pastebin.com/nBvkaEUt
auth.module.ts https://pastebin.com/MYQ2dw6y
auth.guard.ts https://pastebin.com/xDpQ8vwE
auth.service.ts https://pastebin.com/G9TzN3XF
提前致谢
更新: 添加时出现错误
@Expose()
@HasMany(() => Group)
groups: Group[];
到user.model.ts
在您的 auth.module.ts
文件中,而不是
import { UsersModule } from '../users';
尝试
import { UsersModule } from '../users/user.module';
我认为这些桶文件(index.ts
导出所有内容)不是一个好的模式,因为它在 NestJS 模块之间引入了循环导入。
1 auth.module.ts
进口 users/index.ts
(出口 user.module.ts
我猜)
2 groups.module.ts
进口 auth/index.ts
(出口 auth.module.ts
我猜)
3 user.model.ts
导入 groups/index.ts
那么你最终会得到 1 导入 3 和 3 导入 1。就是这个问题。