localstorage 存储草稿图片,如何实现?

发布于 2022-08-30 00:49:26 字数 105 浏览 30 评论 0

我正在使用backbone.localstorage 用来做 草稿功能,可以保存文字,但是如何将图片保存到草稿中呢?如果使用base64的话,大图片比如10M就不好处理了,大家有没有什么建议?

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

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

发布评论

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

评论(2

暮凉 2022-09-06 00:49:26

There's no workaround. Storage quota is a hard limit.

However, for binary data I would recommend IndexedDB instead of localStorage, for several reasons:

  • You can save binary data directly (no need to convert to base64), which saves 33% of quota.
  • This also helps to get rid of the performance overhead of conversion.
  • According to a test, in some browsers (e.g. Firefox), IndexedDB have more storage quota compared to localStorage.
  • IndexedDB provides an asynchronous API, which is important when you read a big chunk of data that takes time.
无可置疑 2022-09-06 00:49:26

存url,再获取,没有网络给默认的

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