ng build --prod 无法确定 class X 的模块!将 ThreadListTabsComponent 添加到 NgModule 以修复它
ng build --prod Cannot determine the module for class X! Add ThreadListTabsComponent to the NgModule to fix it
我正在尝试构建我的 Angular 5 应用程序,但出现错误:
Cannot determine the module for class ThreadListTabsComponent in
/home/brightwater/Differ/src/app/thread-lists/thread-lists.component.ts!
Add ThreadListTabsComponent to the NgModule to fix it.
这令人困惑,因为我正在模块中导入有问题的组件:
线程-lists.module.ts:
import { OtherModules } from './modules-everywhere';
import { NgModule } from '@angular/core'
import { SomeOtherComponents } from './other-components.component';
import { ThreadListTabsComponent } from './thread-list-tabs.component';
@NgModule({
imports:
[
OtherModules
],
declarations: [
OtherComponents,
ThreadListTabsComponent
],
exports: [
OtherComponents,
ThreadListTabsComponent
],
providers: [ ThreadListsService ]
})
export class ThreadListsModule { }
组件如下:
线程列表-tabs.component.ts
import { Component } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Router } from '@angular/router';
import { ThreadListsService } from './thread-lists.service';
@Component({
moduleId: module.id,
selector: 'thread-list-tabs',
templateUrl: 'thread-list-tabs.component.html',
styleUrls: ['thread-list-tabs.component.css']
})
export class ThreadListTabsComponent {
// Stuff this component does
}
app.module.ts
import { NgModule } from '@angular/core'
import { ThreadListsModule } from './thread-lists/thread-lists.module'
import { OtherModules } from './other.modules'
import { AppComponent } from './app.component'
@NgModule({
imports: [
OtherModules,
ThreadListsModule
],
declarations: [
AppComponent
],
providers: [ SomeService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
有什么我遗漏的吗?
我正在尝试构建我的 Angular 5 应用程序,但出现错误:
Cannot determine the module for class ThreadListTabsComponent in /home/brightwater/Differ/src/app/thread-lists/thread-lists.component.ts! Add ThreadListTabsComponent to the NgModule to fix it.
这令人困惑,因为我正在模块中导入有问题的组件:
线程-lists.module.ts:
import { OtherModules } from './modules-everywhere';
import { NgModule } from '@angular/core'
import { SomeOtherComponents } from './other-components.component';
import { ThreadListTabsComponent } from './thread-list-tabs.component';
@NgModule({
imports:
[
OtherModules
],
declarations: [
OtherComponents,
ThreadListTabsComponent
],
exports: [
OtherComponents,
ThreadListTabsComponent
],
providers: [ ThreadListsService ]
})
export class ThreadListsModule { }
组件如下:
线程列表-tabs.component.ts
import { Component } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Router } from '@angular/router';
import { ThreadListsService } from './thread-lists.service';
@Component({
moduleId: module.id,
selector: 'thread-list-tabs',
templateUrl: 'thread-list-tabs.component.html',
styleUrls: ['thread-list-tabs.component.css']
})
export class ThreadListTabsComponent {
// Stuff this component does
}
app.module.ts
import { NgModule } from '@angular/core'
import { ThreadListsModule } from './thread-lists/thread-lists.module'
import { OtherModules } from './other.modules'
import { AppComponent } from './app.component'
@NgModule({
imports: [
OtherModules,
ThreadListsModule
],
declarations: [
AppComponent
],
providers: [ SomeService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
有什么我遗漏的吗?