Angular DOM 操作:为啥 ViewChildren 有效而 ViewChild 无效
Posted
技术标签:
【中文标题】Angular DOM 操作:为啥 ViewChildren 有效而 ViewChild 无效【英文标题】:Angular DOM Manipulation: Why ViewChildren works and ViewChild doesn'tAngular DOM 操作:为什么 ViewChildren 有效而 ViewChild 无效 【发布时间】:2019-06-20 05:11:58 【问题描述】:我发现 ngWizard 的一篇有趣的文章 here 引用了关于删除组件的正确方法的 stackblitz 示例。
@Component(
selector: 'app-root',
template: `
<button (click)="remove()">Remove child component</button>
<a-comp #c></a-comp>
`
)
export class AppComponent implements AfterViewChecked
@ViewChildren('c', read: ElementRef) childComps: QueryList<ElementRef>;
constructor(private hostElement: ElementRef, private renderer: Renderer2)
ngAfterViewChecked()
console.log('number of child components: ' + this.childComps.length);
remove()
this.renderer.removeChild(
this.hostElement.nativeElement,
this.childComps.first.nativeElement
);
在这个例子中,他使用了@ViewChildren(这样他就可以将孩子的数量记录到控制台)。
我将其简化为只使用@ViewChild,如下所示 (stackblitz):
export class AppComponent
@ViewChild('c') child:ElementRef;
constructor(private hostElement: ElementRef, private renderer: Renderer2)
remove()
this.renderer.removeChild(
this.hostElement.nativeElement,
this.child.nativeElement
);
不幸的是,这是我得到的结果:
ERROR TypeError: 无法在“Node”上执行“removeChild”:参数 1 不是“Node”类型。
为什么在 ViewChildren 中引用第一个 elementRef 有效,而在 ViewChild 中引用单个 elementRef 无效?
【问题讨论】:
【参考方案1】:我相信这应该可行:
@ViewChild('c', read: ElementRef) child:ElementRef;
希望对您有所帮助。
【讨论】:
以上是关于Angular DOM 操作:为啥 ViewChildren 有效而 ViewChild 无效的主要内容,如果未能解决你的问题,请参考以下文章
为啥 angular.js 在添加动态元素时不够聪明,无法编译 DOM?