2

当我使用.loadDataor加载页面.loadDataWithBaseURL时,系统将加载一次页面。

之后,后续调用不起作用。

在 4.0.3 中,如果我要使用新数据再次调用该函数,它确实会发生变化。

我该如何解决 2.2+ 的问题?我要销毁 webview 并创建一个新的吗?

webView1.loadDataWithBaseURL("file://", page, "text/html", "UTF-8", null);
webView1.loadUrl( "javascript:window.location.reload( true )" );
4

2 回答 2

1

在 loadDataWithBaseURL 中,将最后一个参数设置为该数据来自的 URL,而不是null.

于 2012-04-18T21:33:55.660 回答
1

我认为应该是"file:///"。你只是错过了一个斜线。

于 2012-09-25T01:22:02.817 回答