我想缓存显示在Flutter Webview中的网页,从而提高性能,而无需重新加载页面。有空吗?我可以实施吗?
答案 0 :(得分:0)
flutter_inappwebview(以前的flutter_inappbrowser)
参数为cacheEnabled
,默认值为ture
cacheEnabled
:设置WebView是否应使用浏览器缓存。默认值为true
flutter_webview_plugin社区版本
具有参数appCacheEnabled
以启用缓存
WebviewScaffold(
key: _scaffoldKey,
url: widget.url,
clearCache: true,
appCacheEnabled: true,
);
webview_flutter正式版
不提供参数,可以查看Android源代码
https://github.com/flutter/plugins/blob/master/packages/webview_flutter/android/src/main/java/io/flutter/plugins/webviewflutter/FlutterWebView.java
默认缓存模式取决于iOS WKWebView
和Android
WebView
Android WebView
的默认缓存模式为LOAD_DEFAULT
https://developer.android.com/reference/android/webkit/WebSettings#LOAD_DEFAULT
默认缓存使用模式。如果导航类型没有任何特定行为,请在缓存资源可用且未过期时使用缓存的资源,否则从网络加载资源