使用cookie
class cookie else
} getcookie (name) else // eslint-disable-line
} delcookie (name)
}}const usecookie = new cookie()
export default usecookie
帶過期時間
的本地儲存import store from
'store'
/* 設定帶過期時間的本地儲存
* demo:設定快取:
* imoprt hmmstore from './hmmstore'
* hmmstore.setstore('test', , 10 * 60 * 2000)
* 獲取快取
* hmmstore.get('test')
*/class hmmstore
// 設定本地儲存
setstore (name, data, during = this.expires)
// 設定儲存
store.set(`$`, tempdata)
} // 獲取本地儲存
getstore (name) else
} else
} else
} // 刪除快取
deletestore (name)
// 獲取當前時間
getnowtime ()
}export default
new hmmstore()
本地儲存 使用localStorage 儲存資料
新建專案 不知道怎麼新建專案?參考文章 vue cli3 搭建vue專案 目錄結構 介面顯示 新增store.js export default 將兩個操作localstorage的函式export出去。需要在使用的時候import進來。html v for item,index in list k...
本地儲存localstorage的使用
將資料儲存在本地,非記憶體,非伺服器,儲存在本地的好處,可以長時間儲存,可以不用連線伺服器,可以實現跨頁面儲存資料 localstorage 字元,5m,永久,不允許跨域 伺服器,瀏覽器 不會隨著http發給伺服器,不需要在伺服器環境下使用 localstorage是window身上的乙個子物件 c...
Web 本地儲存和Vue本地儲存例項
資料的設定和讀取比較方便。容量較大,sessionstorage大約為5mb,localstorage大約為20mb。只能儲存字串,若想要儲存json物件,則可以使用window.json.stringify 或者parse 進行序列化和反序列化編碼 sessionstorage的儲存週期只有一次會...