angular ngModule中的entryComponents是什么?
我正在开发依赖的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。那么有什么需要重复的?如果我在此处不包含组件会怎样?