文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Pinia简单使用及数据持久化怎么实现

2023-06-30 16:54

关注

这篇文章主要讲解了“Pinia简单使用及数据持久化怎么实现”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Pinia简单使用及数据持久化怎么实现”吧!

基本介绍

Pinia 是 Vue.js 的轻量级状态管理库

pinia核心概念

基本使用与state

目标:掌握pinia的使用步骤

(1)安装

yarn add pinia# ornpm i pinia

(2)在main.js中挂载pinia

import { createApp } from 'vue'import App from './App.vue'import { createPinia } from 'pinia'const pinia = createPinia()createApp(App).use(pinia).mount('#app')

(3)新建文件store/counter.js

import { defineStore } from 'pinia'// 创建store,命名规则: useXxxxStore// 参数1:store的唯一表示// 参数2:对象,可以提供state actions gettersconst useCounterStore = defineStore('counter', {  state: () => {    return {      count: 0,    }  },  getters: {     },  actions: {      },})export default useCounterStore

(4) 在组件中使用

<script setup>import useCounterStore from './store/counter'const counter = useCounterStore()</script><template>  <h2>根组件---{{ counter.count }}</h2></template><style></style>

actions的使用

目标:掌握pinia中actions的使用

在pinia中没有mutations,只有actions,不管是同步还是异步的代码,都可以在actions中完成。

(1)在actions中提供方法并且修改数据

import { defineStore } from 'pinia'// 1. 创建store// 参数1:store的唯一表示// 参数2:对象,可以提供state actions gettersconst useCounterStore = defineStore('counter', {  state: () => {    return {      count: 0,    }  },  actions: {    increment() {      this.count++    },    incrementAsync() {      setTimeout(() => {        this.count++      }, 1000)    },  },})export default useCounterStore

(2)在组件中使用

<script setup>import useCounterStore from './store/counter'const counter = useCounterStore()</script><template>  <h2>根组件---{{ counter.count }}</h2>  <button @click="counter.increment">加1</button>  <button @click="counter.incrementAsync">异步加1</button></template>

getters的使用

pinia中的getters和vuex中的基本是一样的,也带有缓存的功能

(1)在getters中提供计算属性

import { defineStore } from 'pinia'// 1. 创建store// 参数1:store的唯一表示// 参数2:对象,可以提供state actions gettersconst useCounterStore = defineStore('counter', {  state: () => {    return {      count: 0,    }  },  getters: {    double() {      return this.count * 2    },  },  actions: {    increment() {      this.count++    },    incrementAsync() {      setTimeout(() => {        this.count++      }, 1000)    },  },})export default useCounterStore

(2)在组件中使用

  <h2>根组件---{{ counter.count }}</h2>  <h4>{{ counter.double }}</h4>

storeToRefs的使用

目标:掌握storeToRefs的使用

如果直接从pinia中解构数据,会丢失响应式, 使用storeToRefs可以保证解构出来的数据也是响应式的

<script setup>import { storeToRefs } from 'pinia'import useCounterStore from './store/counter'const counter = useCounterStore()// 如果直接从pinia中解构数据,会丢失响应式const { count, double } = counter// 使用storeToRefs可以保证解构出来的数据也是响应式的const { count, double } = storeToRefs(counter)</script>

pinia模块化

在复杂项目中,不可能把多个模块的数据都定义到一个store中,一般来说会一个模块对应一个store,最后通过一个根store进行整合

(1)新建store/user.js文件

import { defineStore } from 'pinia'const useUserStore = defineStore('user', {  state: () => {    return {      name: 'zs',      age: 100,    }  },})export default useUserStore

(2)新建store/index.js

import useUserStore from './user'import useCounterStore from './counter'// 统一导出useStore方法export default function useStore() {  return {    user: useUserStore(),    counter: useCounterStore(),  }}

(3)在组件中使用

<script setup>import { storeToRefs } from 'pinia'import useStore from './store'const { counter } = useStore()// 使用storeToRefs可以保证解构出来的数据也是响应式的const { count, double } = storeToRefs(counter)</script>

pinia数据持久化

目标: 通过 Pinia 插件快速实现持久化存储。

插件文档:点击查看

用法

安装

yarn add pinia-plugin-persistedstateornpm i  pinia-plugin-persistedstate

使用插件 在main.ts中注册

import { createApp } from "vue";import App from "./App.vue";import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'const pinia = createPinia();pinia.use(piniaPluginPersistedstate);createApp(App).use(pinia);

模块开启持久化

const useHomeStore = defineStore("home",{  // 开启数据持久化  persist: true  // ...省略});

常见疑问

进阶用法

需求:不想所有数据都持久化处理,能不能按需持久化所需数据,怎么办?

import { defineStore } from 'pinia'export const useStore = defineStore('main', s{  state: () => {    return {      someState: 'hello pinia',      nested: {        data: 'nested pinia',      },    }  },  // 所有数据持久化  // persist: true,  // 持久化存储插件其他配置  persist: {    // 修改存储中使用的键名称,默认为当前 Store的 id    key: 'storekey',    // 修改为 sessionStorage,默认为 localStorage    storage: window.sessionStorage,    // 部分持久化状态的点符号路径数组,[]意味着没有状态被持久化(默认为undefined,持久化整个状态)    paths: ['nested.data'],  },})

总结:相比于vuex,pinia对于typescript的支持性更好,友好的devTools支持,pinia只有1kb,简化了很多方法的写法。

感谢各位的阅读,以上就是“Pinia简单使用及数据持久化怎么实现”的内容了,经过本文的学习后,相信大家对Pinia简单使用及数据持久化怎么实现这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯