我的离子应用程序中有一个IFrame:
<ion-content>
<iframe height="100%" width="100%" [src]="urlbreaks()" allow-same-origin allow-forms allow-scripts frameBorder="0"></iframe>
</ion-content>
urlbreaks() {
this.url_breaks = "http://www.marizafoods.com.br/produtos/adminappbreaks";
return this.sanitize.bypassSecurityTrustResourceUrl(this.url_breaks);
}
此IFrame会打开一个页面,其中包含用于搜索Itens的输入,当我单击此输入时,键盘会打开,但IFrame会自动重新加载。
我需要停止此自动重装!