我通过父组件中的按钮动态添加子组件。它工作正常,我可以添加尽可能多的孩子,但是一旦我删除了最后一个孩子(刚添加),添加一个新的孩子就不再工作了。
以下是我的表现:
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();
}
};
答案 0 :(得分:0)
<强>更新强>
从beta.16开始,{p>.dispose()
为destroy()
<强>原始强>
我认为你应该使用
child.dispose();
而不是使用jQuery删除标记。
答案 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();
}
};