什麼是pinia?為什麼要使用 Pinia?這篇文章就來帶大家了解一下pinia,透過範例介紹一下pinia的基本使用方法,希望對大家有幫助!
Pinia最初是在 2019 年 11 月左右重新設計使用 Composition API的 Vue Store 外觀的實驗。從那時起,最初的原則仍然相同,但 Pinia 適用於 Vue 2 和 Vue 3 ,並且不需要你使用組合 API。除了安裝和SSR之外,兩者的API 都是相同的,並且這些文件針對Vue 3 ,並在必要時提供有關Vue 2 的註釋,以便Vue 2 和Vue 3 使用者可以閱讀! 【相關推薦:vue.js影片教學】
Pinia 是 Vue 的儲存庫,它允許您跨元件/頁面共用狀態。 ç 這對於單頁應用程式來說是正確的,但如果它是伺服器端呈現的,則會將您的應用程式暴露給安全漏洞。 但即使在小型單頁應用程式中,您也可以從使用Pinia 中獲得很多好處:
開發工具支援
自動完成功能
// stores/counter.js import { defineStore } from 'pinia' export const useCounterStore = defineStore('counter', { state: () => { return { count: 0 } }, // could also be defined as // state: () => ({ count: 0 }) actions: { increment() { this.count++ }, }, })
使用它:
import { useCounterStore } from '@/stores/counter' export default { setup() { const counter = useCounterStore() counter.count++ // with autocompletion ✨ counter.$patch({ count: counter.count + 1 }) // or using an action instead counter.increment() }, }
setup() )來為更高階的用例定義一個Store:
export const useCounterStore = defineStore('counter', () => { const count = ref(0) function increment() { count.value++ } return { count, increment } })
setup()Composition API,請不要擔心,Pinia 也支援一組類似的
地圖助理,例如Vuex。您以相同的方式定義存儲,但隨後使用mapStores()、
mapState()或
mapActions():
const useCounterStore = defineStore('counter', { state: () => ({ count: 0 }), getters: { double: (state) => state.count * 2, }, actions: { increment() { this.count++ } } }) const useUserStore = defineStore('user', { // ... }) export default { computed: { // other computed properties // ... // gives access to this.counterStore and this.userStore ...mapStores(useCounterStore, useUserStore) // gives read access to this.count and this.double ...mapState(useCounterStore, ['count', 'double']), }, methods: { // gives access to this.increment() ...mapActions(useCounterStore, ['increment']), }, }
地圖助理的更多資訊。
為什麼選擇/piːnjʌ/,如英文的「peenya」)是最接近
piña(西班牙語中的菠蘿)的詞,它是一個有效的包名稱。菠蘿實際上是一組單獨的花朵,它們結合在一起形成多個水果。與商店類似,每一家都是獨立誕生的,但最終都是相互連結的。它也是一種美味的熱帶水果,原產於南美洲。
中使用類型,即使在 JavaScript 中也是如此。對於某些人來說,這可能足以在不進一步閱讀的情況下開始使用,但我們仍然建議您查看文檔的其餘部分,甚至跳過此示例並在閱讀完所有核心概念後返回。
import { defineStore } from 'pinia' export const todos = defineStore('todos', { state: () => ({ /** @type {{ text: string, id: number, isFinished: boolean }[]} */ todos: [], /** @type {'all' | 'finished' | 'unfinished'} */ filter: 'all', // type will be automatically inferred to number nextId: 0, }), getters: { finishedTodos(state) { // autocompletion! ✨ return state.todos.filter((todo) => todo.isFinished) }, unfinishedTodos(state) { return state.todos.filter((todo) => !todo.isFinished) }, /** * @returns {{ text: string, id: number, isFinished: boolean }[]} */ filteredTodos(state) { if (this.filter === 'finished') { // call other getters with autocompletion ✨ return this.finishedTodos } else if (this.filter === 'unfinished') { return this.unfinishedTodos } return this.todos }, }, actions: { // any amount of arguments, return a promise or not addTodo(text) { // you can directly mutate the state this.todos.push({ text, id: this.nextId++, isFinished: false }) }, }, })
雖然 Vuex 透過 RFC 從社群收集盡可能多的回饋,但 Pinia 沒有。我根據我開發應用程式、閱讀其他人的程式碼、為使用 Pinia 的客戶工作以及在 Discord 上回答問題的經驗來測試想法。這使我能夠提供一種適用於各種情況和應用程式大小的有效解決方案。我經常發布並在保持其核心 API 不變的同時使庫不斷發展。
Vuex 3.x 是Vuex 的Vue 2 而Vuex 4.x 是Vue 3
Pinia API 與Vuex ≤4 有很大不同,即:
有關如何將現有 Vuex ≤4 項目轉換為使用 Pinia 的更詳細說明,請參閱從 Vuex 遷移指南。
更多程式相關知識,請造訪:程式設計入門! !
以上是什麼是pinia? Vue中怎麼使用它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!