为了账号安全,请及时绑定邮箱和手机立即绑定

[html5]使用localStorage兼容低版本Safari

标签:
Html5

摘要

简单场景描述:将html5开发的app内嵌入ios app中,有部分数据,需要在本地存储,就想到使用浏览器的localstorage或者indexeddb,另外localstorage存储的方式是key,value的方式,并且value是字符串类型的,一般会将json字符串的方式保存,但用起来不太方便,在使用的时候需要转换为json对象。indexeddb存储的是文档类型,类似于mongodb的document。操作更方便。但对低版本的兼容性不太好。

解决办法

http://git.oschina.net/wolfy/indexed-store-db

通过下面的代码判断当前浏览器是否支持indexed db

复制代码

window.indexedDB = window.indexedDB ||                   window.mozIndexedDB ||                   window.webkitIndexedDB ||                   window.msIndexedDB;window.IDBTransaction = window.IDBTransaction ||                   window.webkitIDBTransaction ||                   window.msIDBTransaction;window.IDBKeyRange = window.IDBKeyRange ||                   window.webkitIDBKeyRange ||                   window.msIDBKeyRange;

复制代码复制代码

    var db = {        version: 1, // important: only use whole numbers!        isSupport: function () {// support indexeddb or not            if (!window.indexedDB)                return false;            return true;        },        ......      }

复制代码

一个例子

复制代码

<!DOCTYPE html><html><head>    <meta charset="utf-8" />    <title></title>    <script class="lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC" data-original="js/index-store-db-1.0.js"></script>    <script>        var user1 = { id: 1, name: "wolfy", age: 20 };        var user2 = { id: 2, name: "wolfy", age: 20 };        //set local indexed db name        app.db.objectStoreName = "app_test";        //save data to indexed db        app.db.save(user1, function () {            console.log("Save success");        });        app.db.save(user2, function () {            console.log("Save success");        });        //query user by id        app.db.get(1, function (item) {            console.log("query success", item);        });        //query all user        app.db.getAll(function (items) {            console.log("query all success", items);        });                app.db.delete(1, function () {            console.log("delete success");        });    </script></head><body></body></html>

复制代码

结果

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消