我正在以角度开发一个网站,我处于一种情况,我必须从服务中向index.html注入一个html元素。即我有一个名为InjectorService的服务,它在app.component中提供为
constructor(private injectorService :InjectorService) {
this.injectorService.init();
}
执行init方法时,我想注入
<iframe src="./url.html" id="iframe" width="0"
height="0" style="display:none"></iframe>
在我的index.html的body标签中,结果应该看起来像
<body>
<iframe src="./url.html" id="iframe" width="0"
height="0" style="display:none"></iframe>
<app-root></app-root>
</body>
有什么办法可以实现吗?请帮忙