に依存するIonic
アプリ(2.0.0-rc0
)に取り組んでいますangular 2
。の新しい紹介ngModules
が含まれています。app.module.ts.
以下を追加します。
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
import { Users } from '../pages/users/users';
@NgModule({
declarations: [
MyApp,
Users
],
imports: [
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
Users
]
})
export class AppModule {}
entryComponents
ここで何をしますか?Components
はすでにで定義されていdeclarations
ます。それで、それらを繰り返す必要性は何ですか?ここにコンポーネントを含めないとどうなりますか?
declared
でngModule
なく、使用されることはありませんが。angular.io/docs/ts/latest/cookbook/... entrycomponents -