我们可以在动态加载组件时注入不同的提供程序吗?
我的组件
@Component({
moduleId: module.id,
selector: "my-component",
template: "<div>my-component</div>",
providers: [MyComponentService]
})
export class MyComponent{
constructor(private ds: MyComponentService) {
super();
}
}
其他地方的某个地方,
this._cr.resolveComponent(MyComponent).then(cmpFactory => {
let instance: any = this.testComponentContainer.createComponent(cmpFactory).instance;
});
所以在上面的代码中,在解析MyComponent
的同时,这个MyComponentService
的提供程序也会被解析,我们可以根据一些开关以不同的方式解析它吗?
ViewContainerRef.createComponent
createComponent(componentFactory: ComponentFactory<C>, index?: number, injector?: Injector, projectableNodes?: any[][]) : ComponentRef<C>
具有injector
参数。如果传递一个,则此提供程序用于解析提供程序。不过,我认为您无法覆盖添加到@Component()
装饰器的提供程序。
您可以创建新的喷油器
let injector = ReflectiveInjector.resolveAndCreate([Car, Engine])
并传递此注入器,或者可以将注入器注入调用ViewContainerRef.createComponent
的组件并创建子注入器。
constructor(private injector:Injector) {}
Injector
是泛型基类ReflectiveInjector
是具体的实现。
let resolvedProviders = ReflectiveInjector.resolve([Car, Engine]);
let child = ReflectiveInjector.fromResolvedProviders(resolvedProviders, this.injector);
这样,当前组件可用的提供程序将传递并Car
,并添加Child
。因此,child
无法解析的提供程序(除了 Car
和 Engine
之外)尝试从父注入器解析。
普伦克示例