Firebase Hosting Flutter Web App未清除首次部署的缓存



我们构建了一个flutter web应用程序,并通过firebase托管进行了部署。不幸的是,我们在最初的部署中没有配置任何缓存设置。

现在我们部署了一个新版本的网站,但人们仍然可以在第一次部署时看到旧网站。到目前为止我们尝试了什么:

将版本号添加到我们的index.html:

<"script src="main.dart.js?version=1" type="application/javascript"></script>

在index.html:的标题中添加元数据

<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" />

在firebase.json中,我们添加了以下标题:

"headers": [
{
"source": "**",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=10"
}
]
}
]

所有这些尝试都没有任何运气。我们认为问题是新版本的文件中没有这些条目。我们如何才能强制更新到我们的最新版本?如果有帮助的话,我们甚至会考虑开设一个新的防火基地项目。

试试这个:

在你的flutter应用程序中,在web文件夹的index.html中,在src="main.dart.js后面添加一个版本号

所以你的新产品线会是这样的:

<script src="main.dart.js?version=1" type="application/javascript"></script>

然后在进行每个构建之前,将版本号增加到2等。

2021年6月更新:在index.html中添加此行作为正文中的最后一个脚本

我看到Flutter现在默认在index.html中包含这个脚本,如果项目是最近创建的,它有serviceWorkerVersion元素,在编译时更新版本:

<script>
var serviceWorkerVersion = null;
var scriptLoaded = false;
function loadMainDartJs() {
if (scriptLoaded) {
return;
}
scriptLoaded = true;
var scriptTag = document.createElement('script');
scriptTag.src = 'main.dart.js';
scriptTag.type = 'application/javascript';
document.body.append(scriptTag);
}
if ('serviceWorker' in navigator) {
// Service workers are supported. Use them.
window.addEventListener('load', function () {
// Wait for registration to finish before dropping the <script> tag.
// Otherwise, the browser will load the script multiple times,
// potentially different versions.
var serviceWorkerUrl = 'flutter_service_worker.js?v=' + serviceWorkerVersion;
navigator.serviceWorker.register(serviceWorkerUrl)
.then((reg) => {
function waitForActivation(serviceWorker) {
serviceWorker.addEventListener('statechange', () => {
if (serviceWorker.state == 'activated') {
console.log('Installed new service worker.');
loadMainDartJs();
}
});
}
if (!reg.active && (reg.installing || reg.waiting)) {
// No active web worker and we have installed or are installing
// one for the first time. Simply wait for it to activate.
waitForActivation(reg.installing ?? reg.waiting);
} else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) {
// When the app updates the serviceWorkerVersion changes, so we
// need to ask the service worker to update.
console.log('New service worker available.');
reg.update();
waitForActivation(reg.installing);
} else {
// Existing service worker is still good.
console.log('Loading app from service worker.');
loadMainDartJs();
}
});
// If service worker doesn't succeed in a reasonable amount of time,
// fallback to plaint <script> tag.
setTimeout(() => {
if (!scriptLoaded) {
console.warn(
'Failed to load app from service worker. Falling back to plain <script> tag.',
);
loadMainDartJs();
}
}, 4000);
});
} else {
// Service workers not supported. Just drop the <script> tag.
loadMainDartJs();
}

如果您不想使用服务器工作缓存,可以提供--pwa-strategy=none。否则,该应用程序将在下载新版本并重新访问页面后进行更新。

示例:

flutter build web --release --pwa-strategy=none

它将生成一个没有正文的服务工作者。这对于本地测试或在不需要服务工作者缓存功能的情况下是有用的

默认情况下,它设置为offline-first:尝试急切地缓存应用程序外壳,然后在加载所有后续资产时惰性地缓存这些资产。当对资产进行网络请求时,离线缓存将是首选。

参考:

  • https://github.com/flutter/flutter/issues/71333#issuecomment-736732314
  • flutter help build web

当您构建flutter web时,在目录build/web中生成了一个version.json文件。只需在此文件中增加build_number版本即可。

相关内容

  • 没有找到相关文章

最新更新