• 智能AI问答!更聪明、更完整、原创作!
  • 一款基于GPT的超级AI机器人,可以回答问题、聊天、创作、写文案!

不行 微信小程序中的web-view

发布于 2023-06-16 10:10:48

如果是微信小程序中的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'
    }
  }
})

这样可以在请求时强制禁止缓存。

0 条评论

发布
问题

在线
客服