填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

NgModuleFactory

      
      abstract class NgModuleFactory<T> {
  abstract moduleType: Type<T>
  abstract create(parentInjector: Injector): NgModuleRef<T>
}
    

属性

属性说明
abstract moduleType: Type<T>只读

方法

      
      abstract create(parentInjector: Injector): NgModuleRef<T>
    
参数
parentInjector Injector
返回值

NgModuleRef<T>