iframe ng-attr-srcdoc在较低版本的android(4.3及以下版本)中无效

时间:2015-05-05 10:28:38

标签: javascript android angularjs iframe ionic-framework

我正在使用iframe来显示我的htmlResponse(angularjs嵌入式html)。它在Android 4.4及更高版本中正常工作。但在较低版本中,它不会被渲染。 这就是我在html中提到iframe的方式

<iframe width="100%" height="500px" ng-attr-srcdoc="{{htmlResponse}}"></iframe>

有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

在android中使用Webview。在webview中使用loaddata()。

 String doc = "<iframe src='' width='100%' height='100%' style='border: none;'></iframe>";
    webview.loadData(doc, "text/html", "UTF-8");

希望这会有所帮助......