使用模块导出

时间:2018-04-05 02:07:16

标签: typescript nestjs

我已阅读有关hierarchical inject的nestjs文档的文章。但我在实施它时遇到了问题。目前,我有两个模块。 AuthModule是导入UserModule的模块。 UserModule包含在其他模块中使用的服务(它正常工作)。

auth.module.ts

import * as passport from 'passport';
import {
  Module,
  NestModule,
  MiddlewaresConsumer,
  RequestMethod,
} from '@nestjs/common';
import { AuthService } from './auth.service';
import {JwtStrategy} from './jwt.straegy';

import {UserModule} from '../shared/user/user.module';

@Module({
  imports: [UserModule],
  components: [AuthService, JwtStrategy],
  exports: [AuthService]
})
export class AuthModule implements NestModule {
  public configure(consumer: MiddlewaresConsumer) {
    consumer
      .apply(passport.authenticate('jwt', { session: false }))
      .forRoutes({ path: '/cats', method: RequestMethod.ALL });
  }
}

user.module.ts

import {Module} from '@nestjs/common';
import {MongooseModule} from '@nestjs/mongoose';
import {UserSchema} from '../../schema/user.schema';
import {UserService} from './user.service';

@Module({
  imports: [
    MongooseModule.forFeature([{ name: 'UserInterface', schema: UserSchema }])
  ],
  components: [UserService],
  exports: [UserService]
})
export class UserModule {}

当nestjs将UserService注入AuthService时会出现问题。遇到以下错误。从构造函数中删除服务的工作原理。奇怪的是UserService在其他模块中工作。

Error: Nest can't resolve dependencies of the AuthService (?). Please verify whether [0] argument is available in the current context.

auth.service.ts

import * as jwt from 'jsonwebtoken';
import { Component } from '@nestjs/common';
import {UserService} from '../shared/user/user.service';

@Component()
export class AuthService {

  constructor(private readonly userService: UserService) {}

  async createToken(username) {
    const expiresIn = 60 * 60, secretOrKey = 'i am fake!';
    const user = {username};
    const token = jwt.sign(user, secretOrKey, {expiresIn});
    return {
      expires_in: expiresIn,
      access_token: token
    };
  }

  async validateUser(signedUser): Promise<boolean> {
    return !!(await this.userService.findByUsername(signedUser.username));
  }
}

1 个答案:

答案 0 :(得分:1)

多奇怪,我确实有几乎相同的代码,我想我注意到了,我不确定这是否是问题,但你可能在anther模块中使用authService?如果是这样,你可能需要在authModule中重新导出usersModule,这样你的当前范围就会拥有它:

authModule中的

exports: [UserModule, AuthService]

(无法显示完整的示例,因为stackoverflow已经醒来,错误的脚并且不会让我添加代码块)

如果此更改有效,您可能已将&#34;(添加到组件数组)authService导入到anther模块而不导入整个authModule, 如果你能提供所有代码的github repo,那就更容易了。

请记住,authService现在是authModule的一部分,不应该直接添加到另一个模块,而只能通过&#34; import&#34;数组,如果不是你的情况,你可以提供github repo所有的代码,它可以更容易帮助