当前位置:网站首页>localstorage本地存储的方法
localstorage本地存储的方法
2022-08-04 17:44:00 【哈希嘻哈】
通常我们把用户信息存储到仓库中时,刷新后信息会丢失。一般还会再存储到本地。
方法如下:
其中Profile是用户信息类型注解
import {
Profile} from '@/types/user'
const key = 'my_key'
// 存储用户信息
export const setUserInfo = (userInfo: Profile) => {
localStorage.setItem(key, JSON.stringify(userInfo))
}
// 获取用户信息
export const getUserInfo = () => {
return JSON.parse(localStorage.getItem(key) || '{}')
}
// 移除用户信息
export const removeUserInfo = () => {
localStorage.removeItem(key)
}
边栏推荐
猜你喜欢
软件测试高频面试题真实分享/网上银行转账是怎么测的,设计一下测试用例。

codeforces每日5题(均1600)-第二十八天

LVS+Keepalived群集

CF86D Powerful array

shell函数内如何调用另一个函数

关于ETL的两种架构(ETL架构和ELT架构)
![[Web Automation Test] Quick Start with Playwright, 5 minutes to get started](/img/68/36dd8ef4a4073f03d5e5dad91be20d.png)
[Web Automation Test] Quick Start with Playwright, 5 minutes to get started

php如何查询字符串以什么开头

Clearance sword refers to Offer——The sword refers to Offer II 010. and the sub-array of k

对象实例化之后一定会存放在堆内存中?
随机推荐
"Involution" Index Analysis Based on AHP
Cholesterol-PEG-DBCO,CLS-PEG-DBCO,胆固醇-聚乙二醇-二苯基环辛炔科研试剂
clickhouse online and offline table
Cholesterol-PEG-Maleimide,CLS-PEG-MAL,胆固醇-聚乙二醇-马来酰亚胺一种修饰性PEG
我的大一.
正则过滤字符串中 script 标签
学习探索-网站中引入百度统计
R语言ggplot2可视化:使用ggpubr包的ggbarplot函数可视化柱状图、color参数指定柱状图的边框的色彩
怎么招聘程序员
《中国综合算力指数》《中国算力白皮书》《中国存力白皮书》《中国运力白皮书》在首届算力大会上重磅发出
【日记】高并发下的DB分库分表分区策略
.NET云原生应用发展论坛--8月7日邀你一起云上探索
Boost library study notes (1) Installation and configuration
Learning to Explore - Setting the Foreground Color for Fonts
Create Sentinel high-availability cluster current limiting middleware from -99
安装失败怎么办
SRM供应商协同管理系统功能介绍
JS兼容问题总结
基于clipboard.js对复制组件的封装
Flutter实战-请求封装(四)之gzip报文压缩