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 {
}
をして実行しようとしたが、それ
何が起こっているかについての任意のアイデア:常にフォローエラーを返しますか?
いいえ、HTMLページは私のプロジェクトフォルダにあります。 –