启用html5离线存储时加一按钮不加载
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将通配符“*”添加到缓存清单的 NETWORK 部分解决了该问题。
adding the wildcard '*' to the NETWORK section of the cache manifest solved the issue.