gpt4 book ai didi

Angular 9 PWA 哈希不匹配(cacheBustedFetchFromNetwork)

转载 作者:行者123 更新时间:2023-12-05 09:09:05 24 4
gpt4 key购买 nike

我有一个 Angular PWA,它无法离线启动(http 错误 504)。当我检查/ngsw/state 时,我收到此错误:

Error: Hash mismatch (cacheBustedFetchFromNetwork): https://example.com/favicon.ico: expected 566d8535a3adc2f7210a8a890bdc50ec4f91f0e3, got 8e076950c4c615772d8d5d753e07377bab9f2f27 (after cache busting)
at PrefetchAssetGroup.<anonymous> (https://example.com/ngsw-worker.js:734:35)
at Generator.next (<anonymous>)
at fulfilled (https://example.com/ngsw-worker.js:174:62))
Latest manifest hash: 5952e5e67f8b4ee7115ef9d519a346712927b608

使用 Angular CLI:9.1.9节点:12.16.1 Angular :9.1.11

PWA 上的灯塔检查没有给我任何错误,并且在我使用 .htaccess 的 apache 服务器上重定向 Angular 路由

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteRule ^(.*) /index.html [NC,L]

有人知道吗?谢谢!

最佳答案

在我的例子中,问题与我使用 git 部署应用程序(使用 post-receive git hook)有关。默认情况下,git 会替换行尾。这导致服务器上的文件与原始文件不同,它们的哈希值也不同。

我比较了服务器上文件 index.html 的哈希值,它与“ngsw.json”文件中的值不同。

    sha1sum index.html
04e691dbfae931bfd24513ac63d833bdfee3a1f6 index.html

在我禁用行尾转换之后:

    git config --local core.autocrlf false

然后再次推送项目,问题消失了,sha1sum index.html 向我显示了“ngsw.json”中的保存哈希。

关于Angular 9 PWA 哈希不匹配(cacheBustedFetchFromNetwork),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62711670/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com