如何使用 JavaScript 存储图像以供离线使用?
如果环境是带有本地存储或 Web SQL DB 等内容的 WebKit 浏览器,我可以使用 JavaScript 来保存此图像(不是 url):
我希望能够离线并使用类似的方法加载此图像以供以后从设备使用file:///my_app/offline_images/f71Gk.jpg
(有点像有保证的缓存)。
编辑 该图像可能来自任何网站,因此不可能让 php 脚本返回 base64 编码。
If the environment is a WebKit browser with stuff like Local Storage or Web SQL DB is there any way I can use JavaScript to save this image (not the url):
I'd like to be able to go offline and load this image for later use from the device using something like file:///my_app/offline_images/f71Gk.jpg
(kind of like a guaranteed cache).
EDIT The image could come from any website so having a php script return base64 encoded is not possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此 JQuery 插件 - http ://dumitruglavan.com/jquery-image-cache-plugin-cache-images-in-browsers-local-storage/
You can do it using this JQuery plugin - http://dumitruglavan.com/jquery-image-cache-plugin-cache-images-in-browsers-local-storage/