【发布时间】:2020-12-03 19:09:19
【问题描述】:
我正在尝试使用下面的组件设置 IFrame 源输入。
由于某种原因它无法正常工作,没有显示任何网页。如何正确设置输入源?
调用方法:
<app-viewer-iframe-two
[url1]="'http://www.food.com'"
[url2]="'http://www.car.com'"
>
</app-viewer-iframe-two>
打字稿:
export class ViewerIframeTwoComponent implements OnInit {
constructor() { }
@Input() url1: string;
@Input() url2: string;
ngOnInit(): void {
}
}
HTML:
<div class="box">
<iframe class="iframe-one" src="{{url1}}" frameborder="0"
scrolling="yes" align="left"> </iframe>
</div>
<div class="box">
<iframe class="iframe-two" src="{{url1}}" frameborder="0"
scrolling="yes" align="right"></iframe>
</div>
错误:
从未设置任何来源,
资源:这仅适用于 Angular 1
How to set an iframe src attribute from a variable in AngularJS
【问题讨论】:
标签: angular typescript iframe angular10