首頁 > 軟體

本地儲存localStorage設定過期時間範例詳解

2023-01-16 14:02:09

思考

在我們使用cookie的時候是可以設定有效期的,但是localStorage本身是沒有該機制的,只能人為的手動刪除,否則會一直存放在瀏覽器當中,可不可以跟cookie一樣設定一個有效期。如果一直存放在瀏覽器又感覺有點浪費,那我們可以把localStorage進行二次封裝實現該方案。

實現思路

在儲存的時候設定一個過期時間,並且儲存的資料進行格式化方便統一校驗,在讀取的時候獲取當前時間進行判斷是否過期,如果過期進行刪除即可。

程式碼實現

目錄結構

enum ts 定義列舉

//字典 Dictionaries    expire過期時間key    permanent永久不過期
export enum Dictionaries {
    expire = '__expire__',
    permanent = 'permanent'
}

type ts 定義型別

import { Dictionaries } from "../enum"
export type Key = string //key型別
export type expire = Dictionaries.permanent | number //有效期型別
export interface Data<T> {  //格式化data型別
    value: T
    [Dictionaries.expire]: Dictionaries.expire | number
}
export interface Result<T> { //返回值型別
    message: string,
    value: T | null
}
export interface StorageCls { //class方法約束
    set: <T>(key: Key, value: T, expire: expire) => void
    get: <T>(key: Key) => Result<T | null>
    remove: (key: Key) => void
    clear: () => void
}

index.ts 主要邏輯實現

import { StorageCls, Key, expire, Data,Result } from "./type";
import { Dictionaries } from "./enum";
export class Storage implements StorageCls {
    //儲存接受 key value 和過期時間 預設永久
    public set<T = any>(key: Key, value: T, expire: expire = Dictionaries.permanent) {
    //格式化資料
        const data = {
            value,
            [Dictionaries.expire]: expire
        }
        //存進去
        localStorage.setItem(key, JSON.stringify(data))
    }
    public get<T = any>(key: Key):Result<T | null> {
        const value = localStorage.getItem(key)
        //讀出來的資料是否有效
        if (value) {
            const obj: Data<T> = JSON.parse(value)
            const now = new Date().getTime()
            //有效並且是陣列型別 並且過期了 進行刪除和提示
            if (typeof obj[Dictionaries.expire] == 'number' && obj[Dictionaries.expire] < now) {
                  this.remove(key)
                  return {
                     message:`您的${key}已過期`,
                     value:null
                  }
            }else{
            //否則成功返回
                return {
                    message:"成功讀取",
                    value:obj.value
                }
            }
        } else {
           //否則key值無效
            console.warn('key值無效')
            return {
                message:`key值無效`,
                value:null
             }
        }
    }
    //刪除某一項
    public remove(key:Key) {
        localStorage.removeItem(key)
    }
    //清空所有值
    public clear() {
       localStorage.clear()
    }
}

rollup.js 簡易打包暫時沒有寫的很複雜 所用到的依賴 rollup rollup-plugin-typescript2 typescript

import ts from 'rollup-plugin-typescript2'
import path from 'path'
export default {
     input:'./src/index.ts',
     output:{
         file:path.resolve(__dirname,'./dist/index.js')
     },
     plugins:[
        ts()
     ]
}

程式碼測試

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script type="module">
        import { Storage } from './dist/index.js'
        const sl = new Storage()
        //五秒後過期
        sl.set('a', 123, new Date().getTime() + 5000)
        setInterval(() => {
            const a = sl.get('a')
            console.log(a)
        },500)
    </script>
</body>
</html>

測試五秒後過期增加計時器觀察值

過期之後 成功刪除 測試成功

以上就是本地儲存localStorage設定過期時間範例詳解的詳細內容,更多關於本地儲存localStorage設定過期時間的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com