我在ngOninit中以Angular动态创建iframe。
ngOnInit(){
const el = document.createElement('iframe');
el.setAttribute('sandbox', '');
}
然后在ngAfterViewInit中使用ElementRef我试图访问动态创建的组件。
this.elRef.nativeElement.querySelector('iframe');
但是如果总是给我null,如何在这里得到元素的引用,我甚至尝试使用afterContentInit没有任何作用。