您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue之Pinia狀態管理的方法是什么”,在日常操作中,相信很多人在Vue之Pinia狀態管理的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue之Pinia狀態管理的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
Pinia開始于大概2019年,其目的是設計一個擁有 組合式 API 的 Vue 狀態管理庫
目前同時兼容Vue2、Vue3,也并不要求你使用Composition API
Pinia本質上依然是一個狀態管理庫,用于跨組件、頁面進行狀態共享
狀態管理庫是什么?
是一個保存狀態和業務邏輯的實體,它會持有為綁定到你組件樹的狀態和業務邏輯,也就是保存了全局的狀態;
它有點像一個永遠存在的組件,每個組件都可以讀取和寫入它;
你可以在你的應用程序中定義任意數量的Store來管理你的狀態;
應該在什么時候使用 Store?
一個 Store 應該包含可以在整個應用中訪問的數據。這包括在許多地方使用的數據,例如顯示在導航欄中的用戶信息,以及需要通過頁面保存的數據,例如一個非常復雜的多步驟表單。
另一方面,應該避免在 Store 中引入那些原本可以在組件中保存的本地數據,例如,一個元素在頁面中的可見性。
安裝:npm install pinia
使用 Pinia,即使在小型單頁應用中,你也可以獲得如下功能:
Devtools 支持
追蹤 actions、mutations 的時間線
在組件中展示它們所用到的 Store
讓調試更容易的 Time travel
熱更新
不必重載頁面即可修改 Store
開發時可保持當前的 State
插件:可通過插件擴展 Pinia 功能
為 JS 開發者提供適當的 TypeScript 支持以及自動補全功能。
支持服務端渲染
Store有三個核心概念:
state、getters、actions;
等同于組件的data、computed、methods;
一旦 store 被實例化,你就可以直接在 store 上訪問 state、getters 和 actions 中定義的任何屬性;
Store 是用 defineStore() 定義的
它需要一個唯一名稱,作為第一個參數傳遞
這個名字 ,也被用作 id ,是必須傳入的, Pinia 將用它來連接 store 和 devtools。
返回的函數統一使用useX作為命名方案,這是約定的規范
defineStore() 的第二個參數可接受兩類值:Setup 函數或 Option 對象
import { defineStore } from 'pinia' // 你可以對 `defineStore()` 的返回值進行任意命名,但最好使用 store 的名字,同時以 `use` 開頭且以 `Store` 結尾。 // 第一個參數是你的應用中 Store 的唯一 ID。 export const useCounterStore = defineStore('counter', { // 其他配置... })
我們也可以傳入一個帶有 state、actions 與 getters 屬性的 Option 對象:
我們可以認為
state 是 store 的數據 (data)
getters 是 store 的計算屬性 (computed)
而 actions 則是方法 (methods)
export const useCounterStore = defineStore('counter', { state: () => ({ count: 0 }), getters: { double: (state) => state.count * 2, }, actions: { increment() { this.count++ }, }, })
與 Vue 組合式 API 的 setup 函數 相似
我們可以傳入一個函數,該函數定義了一些響應式屬性和方法
并且返回一個帶有我們想暴露出去的屬性和方法的對象
在 Setup Store 中:
ref()
就是 state
屬性
computed()
就是 getters
function()
就是 actions
export const useCounterStore = defineStore('counter', () => { const count = ref(0) function increment() { count.value++ } return { count, increment } })
Store在它被使用之前是不會創建的,我們可以通過調用**useStore()**來使用Store:
<script setup> import { useCounterStore } from '@/stores/counter' const store = useCounterStore() </script>
一旦 store 被實例化,你可以直接訪問在 store 的 state、getters 和 actions 中定義的任何屬性。
注意Store獲取到后不能被解構,那么會失去響應式:
為了從 Store 中提取屬性同時保持其響應式,您需要使用storeToRefs()。
state 是 store 的核心部分,因為store是用來幫助我們管理狀態的
在 Pinia 中,狀態被定義為返回初始狀態的函數
import { defineStore } from 'pinia' export const useCounter = defineStore('counter', { // 為了完整類型推理,推薦使用箭頭函數 state: () => { return { // 所有這些屬性都將自動推斷出它們的類型 counter: 0 } } })
讀取和寫入State:
默認情況下,您可以通過 store 實例訪問狀態來直接讀取和寫入狀態
const counterStore = useCounter() counterStore.$reset()
重置State
你可以通過調用 store 上的 $reset() 方法將狀態 重置 到其初始值
const counterStore = useCounter() counterStore.$reset()
變更State
除了用 store.count++
直接改變 store,你還可以調用 $patch
方法
它允許你用一個 state
的對象在同一時間更改多個屬性
counterStore.$patch({ counter : 1, age: 120, name: 'pack', })
// 示例文件路徑: // ./src/stores/counter.js import { defineStore } from 'pinia' const useCounterStore = defineStore('counter', { state: () => ({ count: 0, }), })
Getters 完全等同于 store 的 state 的計算屬性
可以通過 defineStore()
中的 getters
屬性來定義它們。
推薦使用箭頭函數,并且它將接收 state
作為第一個參數
export const useCounter = defineStore('counter', { state: () => ({ counter: 15 }), getters: { doubleCounter: (state) => state.counter * 2 } })
訪問當前store 實例上的 getters
const counterStore = useCounter() console.log(counterStore.doubleCounter)
Getters中訪問當前store實例的其他Getters
我們可以通過 this
,你可以訪問到其他任何 getters
getters: { doubleCount: (state) => state.counter * 2, // 返回 counter 的值乘以 2 加 1 doubleCountPlusOne() { return this.doubleCount + 1 } }
訪問其他store實例的Getters
getters: { otherGetter(state) { const otherStore = useOtherStore() return state.localData + otherStore.data } }
Getters可以 返回一個函數,該函數可以接受任意參數:
export const useUserListStore = defineStore('main', { state: () => ({ users: [ { id: 1, name: 'lisa' }, { id: 2, name: 'pack' } ] }), getters: { getUserById: (state) => { return (userId) => { state.users.find((user) => user.id === userId) } } } })
在組件中使用:
<template> <p>User 2: {{ getUserById(2) }}</p> </template> <script setup> import { useUserListStore } from './store' const userList = useUserListStore() const { getUserById } = storeToRefs(userList) </script>
Actions 相當于組件中的 methods。
可以通過 defineStore() 中的 actions 屬性來定義,并且它們也是定義業務邏輯的完美選擇。
類似 Getters,Actions 也可通過 this 訪問整個 store 實例
export const useCounterStore = defineStore('counter', { state: () => ({ counter: 15 }), actions: { increment() { this.counter++ } } })
Actions 中是支持異步操作的,并且我們可以編寫異步函數,在函數中使用await
:
Actions 可以像函數或者通常意義上的方法一樣被調用:
import { useAuthStore } from './auth-store' export const useSettingsStore = defineStore('settings', { state: () => ({ preferences: null, // ... }), actions: { async fetchUserPreferences() { const auth = useAuthStore() if (auth.isAuthenticated) { this.preferences = await fetchPreferences() } else { throw new Error('User must be authenticated') } }, }, })
到此,關于“Vue之Pinia狀態管理的方法是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。