Angular 2在ngFor

时间:2017-03-06 08:15:22

标签: angular

我的控制器有一个我想要在页面中拥有的组件列表。这些其他组件是独立创建和正常工作的。

在我的HTML模板中:

<ng-container *ngFor="let component of components">
    <div {{component.name}}></div>
</ng-container>

代码应输出<div>,如下所示:

<div my-component></div>

但事实并非如此,我收到了这个错误:

DOMException: Failed to execute 'setAttribute' on 'Element'

如果我只是在div标签内打印值,那么效果很好:

<div>{{component.name}}</div>

甚至可以实现我想要的目标吗?

1 个答案:

答案 0 :(得分:3)

您可以创建组件工厂并将您需要的组件作为条目组件:

组件工厂视图

<div #dynamicComponentContainer></div>

组件工厂控制器

import {    Component,Input,ViewContainerRef,ViewChild,ReflectiveInjector,ComponentFactoryResolver } from '@angular/core';

import { YourComponent } from './your-component.component';

@Component({
  selector: 'component-factory',
  templateUrl: './component-factory.component.html',
  styleUrls: ['./component-factory.component.css'],
  entryComponents: [ YourComponent ]
})

export class ComponentFactoryComponent {

currentComponent = null;

@ViewChild('dynamicComponentContainer', { read: ViewContainerRef }) dynamicComponentContainer: ViewContainerRef;

// component: Class for the component you want to create
// inputs: An object with key/value pairs mapped to input name/input value
  @Input() set componentData (data: {component: any, inputs: any }) {+    if     (!data) {
  return;
}

// Give you access to the inputs inside the component
let inputProviders = Object.keys(data.inputs).map((inputName) => {return {provide: inputName, useValue: data.inputs[inputName]};});
let resolvedInputs = ReflectiveInjector.resolve(inputProviders);

// This will prepare the inject of inputs on the factory
let injector = ReflectiveInjector.fromResolvedProviders(resolvedInputs, this.dynamicComponentContainer.parentInjector);

// Creates a factory
let factory = this.resolver.resolveComponentFactory(data.component);

// Here we inject the inputs on the factory
let component = factory.create(injector);

// This will add the component in the DOM container
this.dynamicComponentContainer.insert(component.hostView);

// This destroys the old component and input the new one
if (this.currentComponent) {
  this.currentComponent.destroy();+    }

this.currentComponent = component;
}

constructor(private resolver: ComponentFactoryResolver) { }

在您要使用的组件上,您需要提供输入,我们通过Injector执行此操作:

您要使用的组件

import { Component, Input, Injector } from '@angular/core';

@Component({
  selector: 'your-component, [your-component]',
  templateUrl: './your-component.component.html',
  styleUrls: ['./your-component.component.css']
})
export class YourComponent {
  @Input() name: string;
  @Input() label: string;
  @Input() value: string;

  constructor(private injector: Injector) {
    this.name = this.injector.get('name');
    this.label = this.injector.get('label');
    this.value = this.injector.get('value');
  }
}

然后在您的应用组件上,或者您想要使用它时:

应用程序组件视图

<component-factory [componentData]="componentData"></component-factory>

应用程序组件控制器

import { Component } from '@angular/core';
import {YourComponent} from  './your-component.component'

@Component({
  selector: 'app',
  templateUrl: './app.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent  {

  componentData = null;

  constructor() { }

  ngOnInit() {
    this.componentData = {
      component: YourComponent,
      inputs: {
        name: 'example',
        label: 'John Doe',
        value: 'foo'
    }
  }
 }
}
相关问题