в чем проблема:
[Nest] 14188 - 07.11.2023, 21:26:31 ERROR [ExceptionHandler] Nest can't resolve dependencies of the TokenService (?). Please make sure that the argument TokenModel at index [0] is available in the UserModule context.
Potential solutions:
- Is UserModule a valid NestJS module?
- If TokenModel is a provider, is it part of the current UserModule?
- If TokenModel is exported from a separate @Module, is that module imported within UserModule?
@Module({
imports: [ /* the Module containing TokenModel */ ]
})
вот такая ошибка.
загуглил не чего не дало люди встречались с такой ошибкой но у всех разная структура проекта так что я не смог понять в чем у меня причина: нашел вот такйю статью на сековерфлоу но не смог исправить у себя https://stackoverflow.com/questions/56870498/nest-cant-resolve-dependencies-of-the-itemsservice-please-make-sure-that-t
TokenService как @Injectable пометил?
в user модуль импортируй модуль токен
Обсуждают сегодня