您好,登錄后才能下訂單哦!
1.main.js
/* 頁面數(shù)據(jù)緩存 */ var _CACHE_OBJS = {}; function _init_cache(comp, key, cache) { var obj = cache[key]; if (obj !== undefined) { comp[key] = obj; } var deep = typeof comp[key] === 'object'; comp.$watch(key, function (val) { //console.log("page " + key + " updated"); cache[key] = val; }, { deep: deep }); } var _PAGE_CACHE = { /* * 初始化頁面緩存數(shù)據(jù) * comp: 當(dāng)前頁面component 對(duì)象 * path: 當(dāng)前頁面vue router path * data: 需要緩存的數(shù)據(jù)對(duì)象名稱,或名稱數(shù)組 */ cache: function (comp, path, data) { if (data == '' || data == undefined || data == null) { data = restore(comp._data); } var cache = _CACHE_OBJS[path]; if (cache === undefined) { cache = {}; _CACHE_OBJS[path] = cache; } if (typeof data == 'string') { _init_cache(comp, data, cache); } else { var i; for (i = 0; i < data.length; ++i) { _init_cache(comp, data[i], cache); } } console.log(_CACHE_OBJS, "頁面數(shù)據(jù)緩存"); }, /* 清除頁面緩存 */ clear: function (path) { delete _CACHE_OBJS[path]; }, /* 清空所有緩存數(shù)據(jù) */ reset: function () { //console.log("reset page cache"); _CACHE_OBJS = {}; }, /*根據(jù)path查看當(dāng)前頁面緩存是否存在*/ has_cache: function (path) { return _CACHE_OBJS[path] !== undefined && !isEmptyObject(_CACHE_OBJS[path]); } }; Vue.prototype.$cache = _PAGE_CACHE; /* eslint-disable no-new */ var restore = function (vueObject) { var result = []; for (var index in vueObject) { result.push(index); } return result; }; var isEmptyObject = function (obj) { for (var key in obj) { return false; } return true; }
以上這篇關(guān)于vue路由緩存清除在main.js中的設(shè)置就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。