您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue項目中如何用Pinia狀態管理工具”,在日常操作中,相信很多人在Vue項目中如何用Pinia狀態管理工具問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue項目中如何用Pinia狀態管理工具”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
pinia只有store、getter、actions,么有mutations,簡化了狀態管理的操作。
pinia模塊劃分不需要modules
pinia自動化代碼拆分
pinia對ts支持很好以及vue3的composition API
pinia體積更小,性能更好
defineStore( )
方法的第一個參數:容器的名字,名字必須唯一,不能重復defineStore( )
方法的第二個參數:配置對象,放置state,getters,actionsstate
屬性: 用來存儲全局的狀態getters
屬性: 用來監視或者說是計算狀態的變化的,有緩存的功能actions
屬性: 修改state全局狀態數據,可以是異步也可以是同步Pinia
可以用于vue2.x也可以用于vue3.x中
安裝
yarn add pinia -S
main.js
引入
import {createApp} from "vue"
import App from "./app.vue"
import store from "./store/index.js"
const app = createApp(App);
const store = createPinia();
app.use(store).mount("#app")
在store文件夾下新建test.js
import {definePinia} from "pinia"
export default testStore = definePinia('testId',{
state:()=>{
tname:"test",
tnum:0,
},
getters:{
changeTnum(){
console.log("getters")
this.tnum++;
}
},
actions:{
addNum(val){
this.tnum += val
}
},
//持久化存儲配置
presist:{
enable:true,//
strategies:[
{
key:"testId",
storage:localStorage,
paths:['tnum']
}
]
}
})
在用actions的時候,不能使用箭頭函數,因為箭頭函數綁定是外部的this。actions里的this指向當前store
在store文件夾下新建index.js,便于管理
import {createPinia} from "pinia"
const store = createPinia();
export default store
新建A.vue
組件,引入store模塊和storeToRefs
方法storeToRefs
:解構store
中的數據,使之成為響應式數據
<template>
<div>
<div> {{tname}}</div>
<div> {{tid}}</div>
<div> tnum: {{tnum}}</div>
<div> {{tchangeNum}}</div>
<div><button @click="tchangeName">修改</button></div>
<div> <button @click="treset">重置</button></div>
<div @click="actionsBtn">actionsBtn</div>
</div>
</template>
<script setup> import { storeToRefs } from 'pinia' import { useStore } from '../store/user' import { useTest } from '../store/test.js' const testStore = useTest(); let { tname, tchangeNum, tnum } = storeToRefs(testStore) </script>
直接修改數據與使用$path
修改數據相比,官方已經明確表示$patch
的方式是經過優化的,會加快修改速度,對程序的性能有很大的好處。所以如果你是多條數據同時更新狀態數據,推薦使用$patch
方式更新。
雖然可以直接修改,但是出于代碼結構來說, 全局的狀態管理還是不要直接在各個組件處隨意修改狀態,應放于actions
中統一方法修改(piain沒有mutation)。
//直接修改數據
tchangeName(){
tname.value = "測試數據";
tnum.value++;
}
//當然也可以使用`$path`批量修改
tchangeName(){
testStore.$path(state=>{
state.tname = "測試數據";
state.value = 7;
})
}
直接調用actions
中的方法,可傳參數
const actionsBtn = (){
testStore.addNum(5)
}
store
中有$reset
方法,可以直接對store
中數據重置
const treset = (){
testStore.$reset()
}
實現持久化存儲,需要配合以下插件使用
yarn add pinia-plugin-persist
配置store
文件夾下的index.js
文件,引入pinia-plugin-presist
插件
import {createPinia} from "pinia"
import piniaPluginPresist from "pinia-plugin-presist"
const store = createPinia();
store.use(piniaPluginPresist)
export default store
配置stroe文件夾下的test.js文件,使用presist
屬性進行配置
import {definePinia} from "pinia"
export default testStore = definePinia('testId',{
state:()=>{
tname:"test",
tnum:0,
},
getters:{
changeTnum(){
console.log("getters")
this.tnum++;
}
},
actions:{
addNum(val){
this.tnum += val
}
},
//持久化存儲配置
presist:{
enable:true,//
strategies:[
{
key:"testId",
storage:localStorage,
paths:['tnum']
}
]
}
})
enable:true
,開啟持久化存儲,默認為使用sessionStorage
存儲
- strategies
,進行更多配置
- key
,不設置key時,storage的key為definePinia
的第一個屬性,設置key值,則自定義storage的屬性名
storage:localStorage
,設置緩存模式為本地存儲
paths
,不設置時對state
中的所用數據進行持久化存執,設置時只針對設置的屬性進行持久化存儲
模塊化實現即在store對要使用的模塊新建一個js文件,比如user.js
文件。然后配置內容跟其他模塊一樣,根據自己需求進行設置,然后在對應頁面引入。
比如:test.js
獲取user.js
中state
的name
屬性值,在test.js
引入user.js
import { defineStore } from 'pinia'
import { userStore } from "./user.js"
export const useTest = defineStore("testId", {
state: () => {
return {
tid: "111",
tname: "pinia",
tnum: 0
}
},
getters: {
tchangeNum() {
console.log('getters')
return this.tnum + 100
}
},
actions: {
tupNum(val) {
console.log('actions')
this.tnum += val;
},
getUserData() {
console.log(useStore().name);
return useStore().name;
},
},
persist: {
//走的session
enabled: true,
strategies: [
{
key: "my_testId",
storage: localStorage,
paths: ['tnum']
}
]
}
})
user.js
中
import { defineStore } from 'pinia'
export const useStore = defineStore('storeId', {
state: () => {
return {
num: 0,
name: '張三'
}
}
})
A.vue
組件中,調用test.js
中getUserData
方法就可以得到uesr.js
中的name
值
const actionBtn = () => {
testStore.getUserData()
};
到此,關于“Vue項目中如何用Pinia狀態管理工具”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。