关于小程序ios端android webview一直缓存问题的解决方案
// 只要配置服务端http的 Cache-Control Expires Pragma 即可
//php配置
header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Pragma: no-cache");
//php nginx 选择一个地方配置了就行
//nginx 配置
if 路径 {
expires -1;
}
如何验证:在chrome中打开控制台,查看network,点击请求,查看resposne,如下图所示