<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Pinia.js 是新一代的狀態管理器,由 Vue.js團隊中成員所開發的,因此也被認為是下一代的 Vuex,即 Vuex5.x,在 Vue3.0 的專案中使用也是備受推崇。
Pinia.js 有如下特點:
npm install pinia --save
新建 src/store 目錄並在其下面建立 index.ts,匯出 store
// src/store/index.ts import { createPinia } from 'pinia' const store = createPinia() export default store
在 main.ts 中引入並使用。
// src/main.ts import { createApp } from 'vue' import App from './App.vue' import store from './store' const app = createApp(App) app.use(store)
在 src/store 下面建立一個user.ts
//src/store/user.ts import { defineStore } from 'pinia' export const useUserStore = defineStore({ id: 'user', // id必填,且需要唯一 state: () => { return { name: '張三' } } })
<template> <div>{{ userStore.name }}</div> </template> <script lang="ts" setup> import { useUserStore } from '@/store/user' const userStore = useUserStore() </script>
也可以結合 computed 獲取。
const name = computed(() => userStore.name)
state 也可以使用解構,但使用解構會使其失去響應式,這時候可以用 pinia 的 storeToRefs。
import { storeToRefs } from 'pinia' const { name } = storeToRefs(userStore)
可以像下面這樣直接修改 state
userStore.name = '李四'
但一般不建議這麼做,建議通過 actions 去修改 state,action 裡可以直接通過 this 存取。
export const useUserStore = defineStore({ id: 'user', state: () => { return { name: '張三' } }, actions: { updateName(name) { this.name = name } } })
<script lang="ts" setup> import { useUserStore } from '@/store/user' const userStore = useUserStore() userStore.updateName('李四') </script>
export const useUserStore = defineStore({ id: 'user', state: () => { return { name: '張三' } }, getters: { fullName: (state) => { return state.name + '豐' } } })
userStore.fullName // 張三丰
action 可以像寫一個簡單的函數一樣支援 async/await 的語法,讓你愉快的應付非同步處理的場景。
export const useUserStore = defineStore({ id: 'user', actions: { async login(account, pwd) { const { data } = await api.login(account, pwd) return data } } })
action 間的相互呼叫,直接用 this 存取即可。
export const useUserStore = defineStore({ id: 'user', actions: { async login(account, pwd) { const { data } = await api.login(account, pwd) this.setData(data) // 呼叫另一個 action 的方法 return data }, setData(data) { console.log(data) } } })
在 action 裡呼叫其他 store 裡的 action 也比較簡單,引入對應的 store 後即可存取其內部的方法了。
// src/store/user.ts import { useAppStore } from './app' export const useUserStore = defineStore({ id: 'user', actions: { async login(account, pwd) { const { data } = await api.login(account, pwd) const appStore = useAppStore() appStore.setData(data) // 呼叫 app store 裡的 action 方法 return data } } })
// src/store/app.ts export const useAppStore = defineStore({ id: 'app', actions: { setData(data) { console.log(data) } } })
外掛 pinia-plugin-persist 可以輔助實現資料持久化功能。
npm i pinia-plugin-persist --save
// src/store/index.ts import { createPinia } from 'pinia' import piniaPluginPersist from 'pinia-plugin-persist' const store = createPinia() store.use(piniaPluginPersist) export default store
接著在對應的 store 裡開啟 persist 即可。
export const useUserStore = defineStore({ id: 'user', state: () => { return { name: '張三' } }, // 開啟資料快取 persist: { enabled: true } })
資料預設存在 sessionStorage 裡,並且會以 store 的 id 作為 key。
你也可以在 strategies 裡自定義 key 值,並將存放位置由 sessionStorage 改為 localStorage。
persist: { enabled: true, strategies: [ { key: 'my_user', storage: localStorage, } ] }
預設所有 state 都會進行快取,你可以通過 paths 指定要持久化的欄位,其他的則不會進行持久化。
state: () => { return { name: '張三', age: 18, gender: '男' } }, persist: { enabled: true, strategies: [ { storage: localStorage, paths: ['name', 'age'] } ] }
上面我們只持久化 name 和 age,並將其改為localStorage, 而 gender 不會被持久化,如果其狀態傳送更改,頁面重新整理時將會丟失,重新回到初始狀態,而 name 和 age 則不會。
以上就是關於 Pinia.js 用法的一些介紹,Pinia.js 的內容還遠不止這些,更多內容及使用有待大家自己探索。Pinia檔案
以上就是Pinia.js狀態管理器上手使用指南的詳細內容,更多關於Pinia.js狀態管理器的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45