使用jqMobi开发app基础:HTML5 LocalStorage 本地存储

佐手、 提交于 2019-12-06 23:45:33

     在开发app时,会经常用到HTML5 LocalStorage 本地存储相关的资料。例如记住用户名,原来是使用cookie,现在基本都改成了LocalStorage 。

   使用LocalStorage 其实很简单,localStorage.setItem(key, value );设置值,localStorage.getItem(key)读取值。

    可以使用的代码:

LocalMobelInfo = function () {
};
LocalMobelInfo.prototype.putStringData = function (key, value) {
    localStorage.setItem(key, value + "");
};
LocalMobelInfo.prototype.putBooleanData = function (key, value) {
    localStorage.setItem(key, value + "");
};
LocalMobelInfo.prototype.putIntData = function (key, value) {
    localStorage.setItem(key, value + "");
};
LocalMobelInfo.prototype.updateUser = function (name) {
    localStorage.setItem("USERNAME", name + "");  
}
LocalMobelInfo.prototype.getBooleanData = function (key) {
    return "true" == localStorage.getItem(key) ? true : false;
};
LocalMobelInfo.prototype.getStringData = function (key) {
    return localStorage.getItem(key);
};
LocalMobelInfo.prototype.getIntData = function (key) {
    if (!isNullOrUndefined(localStorage.getItem(key))) {
        return parseInt(localStorage.getItem(key));
    } else {
        return 0;
    }
};
LocalMobelInfo.prototype.getUserName = function () {
    return localStorage.getItem("USERNAME");
}

参考资料

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!