启用html5离线存储时加一按钮不加载

发布于 2024-12-25 00:22:18 字数 596 浏览 2 评论 0原文

我在 head 标签的顶部添加了以下加一脚本

<script type="text/javascript" src="http://apis.google.com/js/plusone.js"></script>

,然后使用以下代码在页面中添加了加一按钮

<g:plusone size="tall"></g:plusone>

在正常情况下,一切正常。但是,当我使用以下命令启用离线存储时:

<html manifest="./offline.appcache">

加一按钮未加载(第一次除外)。检查控制台时显示: 无法加载资源 http://apis.google.com/js/plusone.js

我尝试在脱机缓存清单的 NETWORK 部分添加以下内容:

http://apis.google.com/js

I added the following plus one script at the top of the head tag

<script type="text/javascript" src="http://apis.google.com/js/plusone.js"></script>

and then added plus one button in the page with below code

<g:plusone size="tall"></g:plusone>

Under normal conditions everything works fine. But when I enable offline storage with the following:

<html manifest="./offline.appcache">

the plus one button is not getting loaded(except for the first time). On checking the console it shows:
Failed to load resource http://apis.google.com/js/plusone.js

I tried adding the following in NETWORK section of my offline cache manifest:

http://apis.google.com/js

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

待"谢繁草 2025-01-01 00:22:18

将通配符“*”添加到缓存清单的 NETWORK 部分解决了该问题。

adding the wildcard '*' to the NETWORK section of the cache manifest solved the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文