Angular2 - 删除所有/最近的子组件后,无法添加子组件

时间:2016-03-02 12:41:36

标签: javascript angular

我通过父组件中的按钮动态添加子组件。它工作正常,我可以添加尽可能多的孩子,但是一旦我删除了最后一个孩子(刚添加),添加一个新的孩子就不再工作了。

以下是我的表现:

parent.ts

import {Component,DynamicComponentLoader,ElementRef,AfterViewInit,Injector} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
import {ChildComponent} from './child.ts';


@Component({
    selector: 'app',
    host: {'id':'children'},
    template: `<button (click)="addChild()" >Add Child</button><div #here></div>`
})
class AppComponent implements AfterViewInit{
    public counter = 0;
    constructor(private _loader:DynamicComponentLoader,private _elementRef:ElementRef) {}
    addChild(){
        var app = this;
        this._loader.loadIntoLocation(ChildComponent,this._elementRef,'here').then(child => {
            child.instance.id = app.counter++;
        });
    }

}

bootstrap(AppComponent);

child.ts

import {Component,OnInit} from 'angular2/core';

@Component({
    selector: "div",
    host: {'[attr.id]':'id'},
    template: "Child Component <button (click)='remove()' >Remove Me</button>"
})
export class ChildComponent implements OnInit{
    public id:number;

    remove(){
        $("#"+this.id).remove();
    }
};

2 个答案:

答案 0 :(得分:0)

<强>更新

从beta.16开始,{p> .dispose()destroy()

<强>原始

我认为你应该使用

child.dispose();

而不是使用jQuery删除标记。

另见Angular 2 - Adding / Removing components on the fly

答案 1 :(得分:0)

您可以使用dispose类上的ComponentRef方法删除您的组件。

为此,您需要以这种方式将其提供给组件实例:

addChild(){
    var app = this;
    this._loader.loadIntoLocation(ChildComponent,this._elementRef,'here').then(child => {
        child.instance.id = app.counter++;
        child.instance.ref = child;
    });
}

并在组件中使用它:

@Component({
  selector: "div",
  host: {'[attr.id]':'id'},
  template: "Child Component <button (click)='remove()' >Remove Me</button>"
})
export class ChildComponent implements OnInit{
  public id:number;

  remove(){
    this.ref.dispose();
  }
};