访问ViewChild i:e元素Angular中动态创建的元素的引用?

时间:2018-06-14 21:10:07

标签: angular viewchild

我在ngOninit中以Angular动态创建iframe。

  ngOnInit(){
      const el = document.createElement('iframe');
      el.setAttribute('sandbox', '');
    }

然后在ngAfterViewInit中使用ElementRef我试图访问动态创建的组件。

this.elRef.nativeElement.querySelector('iframe');

但是如果总是给我null,如何在这里得到元素的引用,我甚至尝试使用afterContentInit没有任何作用。

0 个答案:

没有答案