本地存储localStorage设置过期时间示例详解
目录
- 思考
- 实现思路
- 代码实现
- 代码测试
思考
在我们使用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设置过期时间的资料请关注我们其它相关文章!
赞 (0)