javascript - How to configure a website using Flutter Web to not cache data? - Stack Overflow

I am creating a website using Flutter Web. The website is in production and we release one version a we

I am creating a website using Flutter Web. The website is in production and we release one version a week. Some users have trouble getting the new version of the web application. I would like to set my website to not cache data.

I added these tags, but to no succes:

  <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
  <meta http-equiv="Pragma" content="no-cache">
  <meta http-equiv="Expires" content="0">

I am creating a website using Flutter Web. The website is in production and we release one version a week. Some users have trouble getting the new version of the web application. I would like to set my website to not cache data.

I added these tags, but to no succes:

  <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
  <meta http-equiv="Pragma" content="no-cache">
  <meta http-equiv="Expires" content="0">
Share Improve this question edited Jul 30, 2021 at 15:02 Filipe Piletti Plucenio asked Jan 14, 2021 at 22:23 Filipe Piletti PlucenioFilipe Piletti Plucenio 73910 silver badges26 bronze badges 1
  • Are you using a CDN or edge provider? Generally you should favor setting the HTTP response header for Caching instead of the meta tags. – Deadron Commented Jan 18, 2021 at 14:55
Add a ment  | 

1 Answer 1

Reset to default 8 +50

It's a decision for your team, but you wouldn't be fine working with versioned URLS? That is the easiest trick I know for cache invalidation. In the index.html file you can pass a unique VERSION_CODE to your main javascript bundle file before requesting it like

<script src="main.dart.js?VERSION_CODE=7672" type="application/javascript"></script>

And then everytime before doing a flutter build web you need to update the VERSION_CODE of your index.html file, thus invalidating the client side when they request your bundle. You can automate this, but there's no way to pass environment variables to flutter build web step.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744120835a4559392.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信