简单粗暴 加个时间戳:
const url = `
https://api.example.com/endpoint?timestamp=${new Date().getTime()}`;
方法二:
flutter 嵌入 H5 那应该是 webview? 加入标识: " 'Cache-Control': 'no-cache, no-store, must-revalidate',"
###
onWebViewCreated: (WebViewController webViewController) {
webViewController.clearCache();
final Map<String, String> headers = {
'Cache-Control': 'no-cache, no-store, must-revalidate',
'Pragma': 'no-cache',
'Expires': '0',
};
webViewController.loadUrl('
https://your-h5-page-url.com', headers: headers);
},
###
还解决不了建议用户更换手机