2017-11-04 12 views
0

新しい角度成分を作成した後、私はこのエラーを持って、私はapp.module.shared.ts上に定義された後に作成されません:は、主server.jsにモジュールを見つける

import { NgModule } from '@angular/core'; 
import { CommonModule } from '@angular/common'; 
import { ReactiveFormsModule } from '@angular/forms'; 
import { HttpModule } from '@angular/http'; 
import { RouterModule } from '@angular/router'; 

import { AppComponent } from './components/app/app.component'; 
import { NavMenuComponent } from './components/navmenu/navmenu.component'; 
import { HomeComponent } from './components/home/home.component'; 
import { HistoryGridComponent } from "./components/history/histories-grid.component"; 

@NgModule({ 
    declarations: [ 
     AppComponent, 
     NavMenuComponent, 
     HomeComponent, 
     HistoryGridComponent 
    ], 
    imports: [ 
     CommonModule, 
     HttpModule, 
     ReactiveFormsModule, 
     RouterModule.forRoot([ 
      { path: '', redirectTo: 'home', pathMatch: 'full' }, 
      { path: 'home', component: HomeComponent }, 
      { path: 'history', component: HistoryGridComponent }, 
      { path: '**', redirectTo: 'home' } 
     ]) 
    ] 
}) 
export class AppModuleShared { 
} 

をして実行しようとしたが、それ

Error

何が起こっているかについての任意のアイデア:常にフォローエラーを返しますか?

答えて

0

履歴グリッドフォルダ内のhistory-grid.component.htmlを削除したと思います。あなたがそれを行った場合、あなたのhistory-component.tsの@Componentの "templateUrl"プロパティを削除してください。 enter image description here

+0

いいえ、HTMLページは私のプロジェクトフォルダにあります。 –

関連する問題