gpt4 book ai didi

javascript - 当它们属于同一个模块时,如何将 nestjs 服务注入(inject)另一个服务?

转载 作者:行者123 更新时间:2023-12-04 17:21:10 25 4
gpt4 key购买 nike

我在 NestJS 中有以下场景:

// user.service.ts
@Injectable()
export class UserService {
constructor(
private readonly userRepository: UserRepository,
private readonly userProfileService: UserProfileService,
) {}
}


// user-profile.service.ts
@Injectable()
export class UserProfileService {
constructor(
private readonly userProfileRepository: UserProfileRepository,
) {}
}


// user.module.ts
@Module({
imports: [DataRepositoryModule], // Required for the repository dependencies
providers: [UserService, UserProfileService],
exports: [UserService, UserProfileService],
})
export class UserModule {}
但是,当我尝试在另一个模块的 Controller 中使用 UserService 时,出现以下错误:
Nest can't resolve dependencies of the UserService (UserRepository, ?). Please make sure that the argument dependency at index [1] is available in the UserModule context.
Potential solutions:
- If dependency is a provider, is it part of the current UserModule?
- If dependency is exported from a separate @Module, is that module imported within UserModule?
@Module({
imports: [ /* the Module containing dependency */ ]
})
Controller 代码:
@Controller()
export class UserController {
constructor(private readonly userService: UserService) {}
}
Controller 模块:
@Module({
imports: [],
providers: [],
controllers: [UserController],
})
export class UserManagementModule {}
主 app.module.ts:
@Module({
imports: [
UserManagementModule,
UserModule,
DataRepositoryModule.forRoot(),
],
controllers: [],
providers: [],
})
export class AppModule {}
我很困惑,因为我正在按照错误提示的那样做,在提供者数组 (UserModule) 中添加这两个服务。我可能会错过什么?

最佳答案

从您的错误来看,您的文件导入之间似乎存在循环依赖关系。检查以确保您没有循环导入链(即 ServiceA 导入 ServiceB 导入 ServiceA 或 ServiceA 导入 ModuleA 导入 ServiceB 导入 ServiceA)。在同一模块内使用桶文件时,这尤其会变得普遍。

关于javascript - 当它们属于同一个模块时,如何将 nestjs 服务注入(inject)另一个服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66167307/

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