在Vue 3中使用useStorage轻松实现localStorage功能
VueUse 介绍
VueUse文档:Get Started | VueUse
VueUse是基于Vue3的Composition API的实用函数的集合,useStorage
是其中的一个函数。我们可以使用useStorage
来实现我们的localStorage
功能。
安装
npm i @vueuse/core
使用CDN
<script src="https://unpkg.com/@vueuse/shared"></script>
<script src="https://unpkg.com/@vueuse/core"></script>
useStorage()
的用法
useStorage()
将要用于引用的键名作为第一个参数传递,将要保存的值作为第二个参数传递。
值的保存、获取、删除
localStorage
设置setItem()
来保存值,用getItem()
来获取值,用removeItem
来删除值如下:
<script setup >
import {ref} from "vue";
const counter = ref('消息')
//保存值
localStorage.setItem('counter',counter.value)
//获取值
const data = localStorage.getItem('counter')
console.log('data',data)
//删除值
localStorage.removeItem('counter')
</script>
而useStorage()
只需要一个就可以进行值的保存和获取,如下,用法:
const storedValue = useStorage('key', value)
例子:
const msg = ref('你好')
//保存值
useStorage('msg',msg.value)
//获取值
const msgData = useStorage('msg')
console.log('msgData',msgData.value)
//删除
const clear = () => {
msg.value = null
}
useStorage()
自定义序列化
默认情况下,useStorage
将根据提供的默认值的数据类型智能地使用相应的序列化程序。例如,JSON.stringify/JSON.parse
将用于对象,Number.toString/parseFloa
t用于数字等。 如下:
import { useStorage } from '@vueuse/core'
useStorage(
'key',
{},
undefined,
{
serializer: {
read: (v: any) => v ? JSON.parse(v) : null,
write: (v: any) => JSON.stringify(v),
},
},
)
以上代码,我们设置对象的名称为key
,初始值为空对象{}
,如果存储中没有key
的值,则返回null。在写入时,将对象序列化为JSON字符串。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)