zoukankan      html  css  js  c++  java
  • js 设置有效的localStorage

    /**
     * 设置有时效的localStorage
     * @调用:setSessionStorage('access_token', '123456', 5000);
     * @调用:getSessionStorage('access_token');
     */
    export function setLocalStorage(key, value, expires) {
        let params = { key: key, value: value, expires: expires};
        if (expires) {
            // 记录何时将值存入缓存,毫秒级
            let data = Object.assign(params, { startTime: new Date().getTime() });
            localStorage.setItem(key, JSON.stringify(data));
        } else {
            if (Object.prototype.toString.call(value) == '[object Object]') {
                value = JSON.stringify(value);
            }
            if (Object.prototype.toString.call(value) == '[object Array]') {
                value = JSON.stringify(value);
            }
            localStorage.setItem(key, value);
        }
    }
    // 获取有时效的sessionStorage
    export function getLocalStorage(key) {
        let item = localStorage.getItem(key);
        // 先将拿到的试着进行json转为对象的形式
        try {
            item = JSON.parse(item);
        } catch (error) {
            // eslint-disable-next-line no-self-assign
            item = item;
        }
        // 如果有startTime的值,说明设置了失效时间
        if (item && item.startTime) {
            let date = new Date().getTime();
            // 如果大于就是过期了,如果小于或等于就还没过期
            if (date - item.startTime > item.expires) {
                localStorage.removeItem(key);
                return '';
            } else {
                return item.value;
            }
        } else {
            return item;
        }
    }
  • 相关阅读:
    Codeforces932E. Team Work
    BZOJ2956: 模积和
    Codeforces932D. Tree
    51nod1040 最大公约数之和
    伯努利数
    BZOJ3456: 城市规划
    BZOJ4555: [Tjoi2016&Heoi2016]求和
    Codeforces936C. Lock Puzzle
    BZOJ3771: Triple
    SPOJ LCS2 后缀自动机
  • 原文地址:https://www.cnblogs.com/ivan5277/p/15105104.html
Copyright © 2011-2022 走看看