Webview中的window.reload

时间:2017-06-25 09:53:20

标签: android webview android-webview kotlin

我正在尝试让location.reload()在webView中工作。但我无法用网址加载它。我必须像这样加载它:

web_view.loadData(filterString(editor.cleanText), "text/html", "UTF-8")

然后js代码看起来不能重新加载webView。 filterString删除了注释,因为它显示Unexpected end of input“否则

我如何使这项工作?

2 个答案:

答案 0 :(得分:0)

是的,我有同样的问题,有时这不起作用:

window.open('[YOUR_HTML_PAGE]'); 

通过示例

window.open('index.html');

所以我使用它,这应该正常工作。

window.open('[YOUR_HTML_PAGE]', '_self', false);

通过示例

window.open('index.html', '_self', false);

答案 1 :(得分:0)

尝试使用window.location.href = page进行访问。在我的情况下,运行正常!