我在angular2组件中有一个iframe,我试图通过访问contentWindow来更改iframe的内容。
iframe应该包含一个简单的按钮。
我的代码:
import { Component } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'component-iframe',
template: '<iframe id="iframe"></iframe>'
})
export class ComponentIframe {
constructor() {
let iframe = document.getElementById('iframe');
let content = '<button id="button" class="button" >My button </button>';
let doc = iframe.contentDocument || iframe.contentWindow;
doc.open();
doc.write(content);
doc.close();
}
}
如果我评论构造函数的代码并启动应用程序,它会编译并正确运行。然后我取消注释并完全运行(按钮出现在iframe中)。
如果我取消代码然后启动应用程序(npm start)我有编译错误消息:
属性'contentWindow'在'HTMLElement'
类型上不存在
我还尝试了将costructor的代码放入ngOnInit(),ngAfterContentInit(),ngAfterViewInit()的替代方法,但错误仍然存在。
答案 0 :(得分:20)
当执行构造函数时,DOM中不存在模板
改为使用
import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'component-iframe',
template: '<iframe #iframe></iframe>'
})
export class ComponentIframe {
@ViewChild('iframe') iframe: ElementRef;
ngAfterViewInit() {
let content = '<button id="button" class="button" >My button </button>';
let doc = this.iframe.nativeElement.contentDocument || this.iframe.nativeElement.contentWindow;
doc.open();
doc.write(content);
doc.close();
}
}
答案 1 :(得分:10)
使用它:
let iframe = document.getElementById('iframe') as HTMLIFrameElement
答案 2 :(得分:2)
我通过以下方式解决了这个问题:
const element: HTMLIFrameElement = document.getElementById('iframe') as HTMLIFrameElement;
const iframe = element.contentWindow;
if (iframe !== null) {
...
}
答案 3 :(得分:1)
如果 IFRAME 的内容是由同源创建的,那么我建议使用IFRAME属性 srcDoc 进行设置和更改IFRAME中的内容。
intern
请参阅此PLUNKER DEMO
这将使原生HTML元素不受影响,与Angular Universal保持兼容。
答案 4 :(得分:0)
我通过以下方式解决了这个问题:
var ID = document.getElementById("Iframe");
var Iframe = eval("(ID.contentWindow || ID.contentDocument)");
Iframe.CallIframeFunction();
答案 5 :(得分:0)
或使用现在著名的Typescript解决方法:
iframe['contentWindow']