gpt4 book ai didi

dart - flutter_webview_plugin 包的 clearCache 不起作用

转载 作者:行者123 更新时间:2023-12-03 15:51:43 28 4
gpt4 key购买 nike

我在 Flutter 项目中使用了 WebView_plugin。我可以加载我自己的网站。但是我的网站更新不存在。估计是缓存问题。

我尝试传递一些选项,例如:clearCache , appCacheEnabled但我的网站更新不存在。

我如何实例化我的网络 View :

dart 
final webView = WebviewScaffold(
url: url,
clearCache: true, // <-- I don't want cache
appCacheEnabled: false, // <-- I don't want cache
initialChild: Container(
color: Colors.white,
child: const Center(
child: const CircularProgressIndicator(),
),
),
withZoom: false,
withLocalStorage: true,
hidden: true,
);

在我的 pubspec.yaml :
dependencies:
flutter_webview_plugin: ^0.3.5

如何清除缓存?

最佳答案

试试吧,第一 clearCache: true之后 appcacheEnable: false

    dart 
final webView = WebviewScaffold(
clearCache: true, // <-- first clearCache
appCacheEnabled: false, // <--after it :3
url: url,
initialChild: Container(
color: Colors.white,
child: const Center(
child: const CircularProgressIndicator(),
),
),
withZoom: false,
withLocalStorage: true,
hidden: true,
);

关于dart - flutter_webview_plugin 包的 clearCache 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56203660/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com