48

对于在 Angular2 中进行身份验证的网站,我想在主应用程序组件中使用身份验证子模块的组件。但是,我不断收到以下错误:

app/app.component.ts(3,10): error TS2305: Module '"<dir>/app/auth/auth.module"' has no exported member 'SigninComponent'.

即使在导出 SigninComponent 之后。

项目文件夹结构如下图:

在此处输入图像描述

应用程序/auth/auth.module.ts:

import { NgModule }       from '@angular/core';
import { CommonModule }   from '@angular/common';
import { FormsModule }    from '@angular/forms';

import { RegisterComponent }    from './components/register.component';
import { SigninComponent }    from './components/signin.component';
import { HomeComponent }    from './components/home.component';

import { AuthService } from './services/auth.service';
import { AuthHttp } from './services/auth-http';

@NgModule({
  imports: [
      CommonModule,
      FormsModule
  ],
  declarations: [
      RegisterComponent,
      SigninComponent,
      HomeComponent
  ],
  providers: [
      AuthService,
      AuthHttp
  ],
  exports: [
      RegisterComponent,
      SigninComponent,
      HomeComponent
  ]
})
export class AuthModule {}

app/auth/components/signin.component.ts:

import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { AuthService } from '../services/auth.service';

@Component({
    selector: 'signin',
    templateUrl: 'app/auth/signin.html'
})
export class SigninComponent {
    ...
}

应用程序/app.component.ts:

import { Component, OnInit } from '@angular/core';
import { Router, RouterOutlet } from '@angular/router';
import { SigninComponent, RegisterComponent } from './auth/auth.module';
import { AuthHttp } from './auth/services/auth-http';
import { AuthService } from './auth/services/auth.service';

@Component({
    selector: 'myapp',
    templateUrl: 'app/app.html'
})

export class AppComponent implements OnInit {
    ...
}

应用程序/app.module.ts:

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule }   from '@angular/forms';
import { HttpModule }    from '@angular/http';
import { RouterModule } from '@angular/router';
import { AppRoutingModule } from './app-routing.module';
import { AuthModule } from './auth/auth.module';

import { AppComponent } from './app.component';

import { AuthService } from './auth/services/auth.service';
import { AuthHttp } from './auth/services/auth-http';

@NgModule({
  declarations: [
      AppComponent,
      AuthService,
      AuthHttp
  ],
  bootstrap: [ AppComponent ],
  imports : [
      BrowserModule,
      FormsModule,
      HttpModule,
      AuthModule,
      AppRoutingModule
  ],
  providers: [
      AuthService,
      AuthHttp
  ]
})
export class AppModule {
}
4

10 回答 10

56

使用 atom (1.21.1 ia32) ...我得到了同样的错误,即使我在 app.module.ts 和 app.module.ts 的声明中添加了对我的管道的引用

解决方案是重新启动我的节点实例...停止网站,然后再次执行ng 服务...在重新启动后转到 localhost:4200 就像一个魅力

于 2017-10-23T09:06:38.547 回答
28

您不需要该行:

import { SigninComponent, RegisterComponent } from './auth/auth.module';

在你的app.component.ts,因为你已经包含AuthModule在你的app.module.ts. AutModuleimport 足以在应用程序中使用您的组件。

您得到的错误是 TypeScript 错误,而不是 Angular 错误,并且声明没有导出成员是正确的,因为它搜索有效的 EC6 语法进行导出,而不是 Angular 模块导出。因此,这条线将在您的app.component.ts

import { SigninComponent } from './auth/components/signin.component';
于 2016-12-21T21:56:41.533 回答
10

还有一些常见的情况:

也许你像这样导出带有“默认”前缀的类

export default class Module {}

删除它

export class Module {}

这为我解决了问题

于 2017-05-30T19:32:12.643 回答
7

对我来说,当我在单个文件中有多个export语句时会出现这样的问题.......ts

于 2017-10-06T09:26:41.617 回答
6

如果您的接口名称与其包含的文件不同,也会发生此错误。请阅读 ES6 模块以获取详细信息。如果SignInComponent是一个接口,就像我的情况一样,那么

SignInComponent

应该在一个名为SignInComponent.ts.

于 2017-06-30T18:35:21.597 回答
4

我有类似的问题。我犯的错误是我没有在 app.module.ts 的 providers 数组中添加服务。希望这会有所帮助,谢谢。

于 2018-10-16T12:08:01.797 回答
2

我遇到了同样的问题,我刚刚使用新端口启动了应用程序,一切看起来都很好。

ng serve --port 4201

于 2018-10-15T13:23:05.583 回答
0

我在 app.rounting.ts 或 app.module.ts 中的组件名称错误(区分大小写)。

于 2018-08-22T17:07:33.467 回答
0

在我的模块中,我以这种方式导出类:

export { SigninComponent } from './SigninComponent';
export { RegisterComponent } from './RegisterComponent';

这允许我从同一模块导入文件中的多个类:

import { SigninComponent, RegisterComponent} from "../auth.module";

PS:当然@Fjut 的答案是正确的,但同时它不支持从同一个文件中多次导入。我建议根据您的需要使用这两个答案。但是从模块导入使文件夹结构重构更容易。

于 2019-11-22T11:37:57.150 回答
0

就我而言,我重新启动了服务器并且它工作了。

于 2020-04-21T18:13:00.370 回答