我正在开发依赖的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 -