Vue3-Pinia的基本使用

什么是Pinia呢?

Pina开始于大概2019,是一个状态管理的库,用于跨组件、页面进行状态共享(这和Vuex、Redux一样),用起来像组合式API(Composition API)

Pinia和Vuex的区别

  • PInia的最初是为了探索Vuex的下一次迭代会是什么样子,结合了Vuex核心团队讨论中的许多想法;
  • 最终,团队意识到Pinia已经实现了Vuex5中大部分内容,所以最终决定用Pinia来替代Vuex;
  • 与Vuex相比,Pinia提供了一个更简单的API,具有更少的仪式,提供了Composition-API风格的API
  • 更重要的是,与TypeScript一起使用时具有可靠的类型推断支持

与Vuex相比,Pinia很多的优势:

比如mutations不再存在:

  • mutations最初是为devtools集成,但这不在是问题
  • 他们经常认为是非常冗长

更友好的TpeScipt支持,Vuex之前对Ts的支持很不友好

不在有modules的嵌套结构

  • 你可以灵活使用每一个store,他们是通过扁平化的方式来相互使用的;

不在有命名空间的概念,不在需要记住他们的复杂关系

如何使用Pinia

1、安装Pinia

  • yarn add pinia
  • npm install pinia

2、创建pinia文件

store文件里index.js

import { createPinia } from 'pinia'

const pinia = createPinia()

export default pinia

在这里插入图片描述

3、main.js导入并引用

import { createApp } from 'vue'
import App from './App.vue'
import pinia from './stores'

createApp(App).use(pinia).mount('#app')

在这里插入图片描述

4、pinia的状态管理,不同状态可以区分不同文件

在这里插入图片描述

//定义关于counter的store
import { defineStore } from ‘pinia’

//defineStore 是返回一个函数 函数命名最好有use前缀,根据函数来进行下一步操作
const useCounter = defineStore('counter',{
	state: () => {
		count:99
	}
})

export default useCounter

5、调用pinia,获取pinia状态值,导入Counter.js,获取Counter.js里面state.count

<template>
  <div class="home">
    <h2>Home View</h2>
    <h2>count: {{ counterStore.count }}</h2>
  </div>
</template>

<script setup>
  import useCounter from '@/stores/counter';

  const counterStore = useCounter()

</script>

<style scoped>
</style>

注意:pinia解构出来的state也是可以调用,但会失去响应式,需要toRef或者pinia自带storeToRefs

<template>
  <div class="home">
    <h2>Home View</h2>
    <h2>count: {{ counterStore.count }}</h2>
    <h2>count: {{ count }}</h2>
    <button @click="incrementCount">count+1</button>
  </div>
</template>

<script setup>
  import { toRefs } from 'vue'
  import { storeToRefs } from 'pinia'
  import useCounter from '@/stores/counter';

  const counterStore = useCounter()

  // const { count } = toRefs(counterStore)
  const { count } = storeToRefs(counterStore)


  function incrementCount() {
    counterStore.count++
  }

</script>

<style scoped>
</style>

store的核心部分:state,getter,action

相当于:data、computed、methods

认识和定义State

state是store的核心部分,因为store是用来帮助我们管理状态

操作State

  1. 读取和写入state:

    默认情况下,可以通过store实例访问状态来直接读取和写入状态;

    ```
    const counterStore = useCounter()
    
    counterStore.counter++
    counterStore.name = 'coderWhy'
    ```
    
  2. 重置State:
    可以调用store上的$reset()方法将状态重置到其初始值

    const counterStore = useCounter()
    conterStore.$reset()
    
  3. 改变State

    • 除了直接用store.counter++修改store,还可以调用$patch

    • 它允许您使用部分‘state’对象同时应该多个修改

    const counterStore = useCounter()
    
    counterStore.$patch({
    	counter:100,
    	name:'kobe'
    })
    
  4. 替换State
    可以通过将其$state属性设置为新对象替换Store的整个状态

    conterStore.$state = {
    	counter:1,
    	name:'why'
    }
    

认识和定义Getters

  • Getters相当于Store的计算属性:

    1. 它们可用defineStore()中的getters属性定义
    2. getters中可以定义接受一个state作为参数的函数
    expoer const useCounter = defineStore('counter',{
    	state: () => {
    		counter:100,
    		firstname:'kobe'
    	},
    	getters:{
    		doubleCounter(state){
    			return state.counter *2
    		}
    	}
    })
    
  • 访问Store里getters方法

    1. 访问当前store的getters:

      const counterSotre = useCounter()
      console.log(counterStore.doublCounter)
      
    2. 我们可以使用this来访问当前的store实例中getters

      expoer const useCounter = defineStore('counter',{
      	state: () => {
      		counter:100,
      		firstname:'kobe'
      	},
      	getters:{
      		doubleCounter(state){
      			return state.counter *2
      		}
      		doubleCounterAdd(){
      			//this指向store
      			return this.doubleCounter +1 
      		}
      	}
      })
      
    3. 访问其它store的getters

      import useUser from ./user
      
      const userStore = useUser()
      
      expoer const useCounter = defineStore('counter',{
      	state: () => {
      		counter:100,
      		firstname:'kobe'
      	},
      	getters:{
      	//调用其它Store
      		doubleCounterUser(){
      			return this.doubleCounter + userStore.umu
      		}
      	}
      })
      
    4. 通过getters可以返回一个函数,可以传参数

      expoer const useCounter = defineStore('counter',{
      	state: () => {
      		counter:100,
      		firstname:'kobe'
      	},
      	getters:{
      	//调用其它Store
      		doubleCounter(state){
      			return function (is) {
      				return state.id + id
      			}
      		}
      	}
      })
      
      const StoreConter = useCounter();
      //传参
      StoreCounter.doublCounter(111)
      

认识和定义Actions

  • Actions 相当于组件中的methods,可以使用defineStore()中的actions属性定义

    expoer const useCounter = defineStore('counter',{
    	state: () => {
    		counter:100,
    		firstname:'kobe'
    	},
    	getters:{
    	//调用其它Store
    		doubleCounter(state){
    			return function (is) {
    				return state.id + id
    			}
    		}
    	},
    	actions:{
    		increment(){
    			this.counter++
    		},
    		//传参
    		incrementnum(num){
    			this。counter += num
    		}
    	}
    })
    

    和getters一样,在action中可以通过this访问整个store实例:

    function increment(){
    	//调用
    	counterStore.increment()
    }
    function incrementnum(){
    	counterStore.increment(10)
    }
    

Actions执行异步操作:

  • Actions中是支持异步操作的,并且我们可以编写异步函数,在函数中使用await

    actions:{
    	async fetchHome(){
    		//???请求
    		const res = await fetch('?????')
    		const data = await res.json()
    		console.log('data',data)
    		return data
    	}
    }
    
    cosnt counterStore = useCounter
    
    counterStore.fetchHome().then(res => {
    	console.log(res)
    })
    
  • 18
    点赞
  • 138
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
Vue Pinia 是一个基于 Vue 3 的状态管理库,可以让你更方便地管理应用程序的状态。下面是一个简单的例子,展示如何使用 Vue Pinia: 1. 安装 Vue Pinia ```bash npm install @pinia/vue3 ``` 2. 创建一个 store ```javascript import { defineStore } from '@pinia/vue3' export const useCounterStore = defineStore({ id: 'counter', state: () => ({ count: 0 }), actions: { increment() { this.count++ } } }) ``` 上面的代码创建了一个名为 `useCounterStore` 的 store,用于管理一个名为 `count` 的状态,并且提供了一个名为 `increment` 的 action,用于增加 `count` 的值。 3. 在组件中使用 store ```vue <template> <div> <p>Count: {{ count }}</p> <button @click="increment">Increment</button> </div> </template> <script> import { useCounterStore } from './store' export default { setup() { const counterStore = useCounterStore() return { count: counterStore.count, increment: counterStore.increment } } } </script> ``` 在组件中使用 `useCounterStore`,并且将 `count` 和 `increment` 绑定到组件的模板中。 4. 在应用程序中注册 store ```javascript import { createApp } from 'vue' import App from './App.vue' import { createPinia } from '@pinia/vue3' import { useCounterStore } from './store' const app = createApp(App) const pinia = createPinia() pinia.useStore(useCounterStore) app.use(pinia) app.mount('#app') ``` 在应用程序中注册 `useCounterStore`,并将其添加到 `pinia` 实例中。 以上就是使用 Vue Pinia 的一些基本步骤。通过使用 Vue Pinia,你可以轻松地管理应用程序的状态,提高开发效率。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值