如果是微信小程序中的web-view,可以在请求头部加上 Cache-Control: no-cache 和 Pragma: no-cache 来禁止缓存。具体做法如下:
$wxapp = getSystemSetting($user['site_id'], 'wxapp');
$page_avatar = $user['avatar'] ?? '/static/img/logo.png';
return view('chat', [
'token' => $token,
'page_avatar' => $page_avatar,
'cache_control' => 'no-cache, no-store, must-revalidate',
'pragma' => 'no-cache',
]);
在前端页面的 web-view 中可以添加以下代码来设置请求头部:
<web-view src="https://example.com" header="{{header}}" />
其中,header
对象包含要传递的请求头部,可以如下设置:
Page({
data: {
header: {
'Cache-Control': 'no-cache, no-store, must-revalidate',
'Pragma': 'no-cache'
}
}
})
这样可以在请求时强制禁止缓存。