美文网首页
vue 项目中监听 localStorage 或 session

vue 项目中监听 localStorage 或 session

作者: 考拉_2044 | 来源:发表于2019-10-18 14:07 被阅读0次
    一、首先在 main.js 中给 Vue.protorype 注册一个全局方法,然后创建一个 StorageEvent 方法,当我在执行sessionStorage.setItem(k, val) 的时候,初始化事件并派发事件。
    
    /**
     * @description
     * @author (Set the text for this tag by adding docthis.authorName to your settings file.)
     * @date 2019-05-29
     * @param { number } type 1 localStorage 2 sessionStorage
     * @param { string } key 键
     * @param { string } data 要存储的数据
     * @returns 
     */
    // 如果报prototype无法被识别的错误,可以把原型方法挂在到__proto__
    Vue.prototype.$addStorageEvent = function (type, key, data) {
        if (type === 1) {
            // 创建一个StorageEvent事件
            var newStorageEvent = document.createEvent('StorageEvent');
            const storage = {
                setItem: function (k, val) {
                    localStorage.setItem(k, val);
                    // 初始化创建的事件
                    newStorageEvent.initStorageEvent('setItem', false, false, k, null, val, null, null);
                    // 派发对象
                    window.dispatchEvent(newStorageEvent);
                }
            }
            return storage.setItem(key, data);
        } else {
            // 创建一个StorageEvent事件
            var newStorageEvent = document.createEvent('StorageEvent');
            const storage = {
                setItem: function (k, val) {
                    sessionStorage.setItem(k, val);
                    // 初始化创建的事件
                    newStorageEvent.initStorageEvent('setItem', false, false, k, null, val, null, null);
                    // 派发对象
                    window.dispatchEvent(newStorageEvent);
                }
            }
            return storage.setItem(key, data);
        }
    }
    二、组件中调用:
    
    this.$addStorageEvent(2, "user_info", data);
    三、在另一个组件中的 mounted 钩子函数中监听:
    
    window.addEventListener('setItem', (e) => {
      //获取参数
         console.log(e);
    });

    相关文章

      网友评论

          本文标题:vue 项目中监听 localStorage 或 session

          本文链接:https://www.haomeiwen.com/subject/krmimctx.html