在 Angular 2 中使用组件解析器加载组件时注入不同的提供程序



我们可以在动态加载组件时注入不同的提供程序吗?

我的组件

  @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无法解析的提供程序(除了 CarEngine 之外)尝试从父注入器解析。

普伦克示例

相关内容

  • 没有找到相关文章

最新更新