vuex 漸進式教程

朴樹-發表於2018-11-24

vuex 漸進式教程,從入門級帶你慢慢深入使用vuex。

Vuex 是什麼?
Vuex 是一個專為 Vue.js 應用程式開發的狀態管理模式。它採用集中式儲存管理應用的所有元件的狀態, 並以相應 的規則保證狀態以一種可預測的方式發生變化。

vuex官網:vuex.vuejs.org/zh/guide/

安裝

安裝vue-cli:

1.cnpm install -g vue-cli
2. vue init webpack vuex
複製程式碼

安裝vuex

cnpm i vuex --save
複製程式碼

1.初級使用方法

// main.js

import Vue from 'vue'
import App from './App'
import router from './router'
import Vuex from 'vuex' // 引入vuex

Vue.config.productionTip = false

Vue.use(Vuex);

let store = new Vuex.Store({ // store 物件
  state:{
    count:0
  }
})

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  store, //使用store,這可以把 store 的例項注入所有的子元件
  components: { App },
  template: '<App/>'
})
複製程式碼

此時可以在元件中使用 this.$store.state.count 獲取store中state的值。如:

// 在元件的computed中使用
  computed:{
     count(){
      return this.$store.state.count;
     }
  }
複製程式碼

想想一下當專案比較大的時候資料繁瑣,如果按照上述方法使用vuex,當你開啟main.js你看的到場景是比較混亂的,各種資料繁雜在一起,不便於日後的維護。請看下一步:

2.中級使用方法: modules 模組化

state用法


2.1 在main.js中刪除下述這部分程式碼

let store = new Vuex.Store({ // store 物件
  state:{
    count:0
  }
})

複製程式碼

2.2. 在src目錄下新建store資料夾並在該資料夾下新建index.js檔案。 在 store/index.js寫入:

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

const store = new Vuex.Store({
  strict:true,  // 開啟嚴格模式  確保state 中的資料只能 mutations 修改
  state:{
    count:0
  }
})

export default store;
複製程式碼

對應的main.js應該寫入:

import store from './store'
複製程式碼

寫到這裡,我們在元件裡就可以獲取到store裡的state的值了

2.3 為了方便測試直接在HelloWorld.vue 中使用store

<template>
  <div class="hello">
    <h2>{{count}}</h2>
  </div>
</template>

<script>
export default {
  name: 'HelloWorld',
  computed:{
     count(){
       return this.$store.state.count;
     }
  }
}
</script>
複製程式碼

很多時候我們們要對state裡的值進行操作,在vuex提供了一個方法mutations

mutations用法(使用mutations可以修改state的值)


在sore\index.js寫入:

//
...
  state:{
    count:0
  },
  mutations:{ // 更改資料的方法
    add(state){
      state.count++
    },
    //提交載荷用法
//     add(state,n){  
//      state.count += n
//    },
    sub(state){
      state.count--
    }
  }
...
//
複製程式碼

元件(HelloWorld.vue)中使用mutations裡對應的方法:

<template>
  <div class="hello">
    <button @click="add">+</button>
    <h2>{{count}}</h2>
    <button @click="sub">-</button>
  </div>
</template>

<script>
export default {
  name: 'HelloWorld',
  computed:{
     count(){
       return this.$store.state.count;
     }
  },
    methods:{
    add(){
      this.$store.commit('add');
    },
    
    //提交載荷用法
   // add(){  
   //    this.$store.commit('add',10);
   // },
   
   //物件風格的提交方式
   //   store.commit({
   //     type: 'add',
   //     n: 10
   //     })
   
    sub(){
      this.$store.commit('sub');
    }
  }
}
</script>
複製程式碼

此時就可以對count進行修改了。

當你想非同步操作的時候,由於mutation必須是同步的這一點,此時不能採用mutation對state 進行修改。action派上用場了,action就是一個函式集合,在裡面怎麼操作都可以,只要最後觸發mutation 就可以了。

註解mutation不能非同步操作的原因:

 mutations: {
   add (state) {
     api.callAsyncMethod(() => {
    state.count++
   })
  }
}
複製程式碼

現在想象,我們正在 debug 一個 app 並且觀察 devtool 中的 mutation 日誌。每一條 mutation 被記錄,devtools 都需要捕捉到前一狀態和後一狀態的快照。然而,在上面的例子中 mutation 中的非同步函式中的回撥讓這不可能完成:因為當 mutation 觸發的時候,回撥函式還沒有被呼叫,devtools 不知道什麼時候回撥函式實際上被呼叫——實質上任何在回撥函式中進行的狀態的改變都是不可追蹤的。

Action 用法


在sore\index.js寫入:


  mutations:{ // 更改資料的方法
    add(state){
      state.count++
    },
    sub(state){
      state.count--
    }
  },
++++
  actions:{
    add(context){  // context 與 store 例項具有相同方法和屬性(但不是store 例項)
      setTimeout(()=>{
        context.commit('add');
      },1000)
    }
  }
++++
複製程式碼

元件(HelloWorld.vue)中使用getters裡對應的方法:

<template>
  <div class="hello">
    <button @click="add">+</button>
    ++++
    <button @click="add_action">action +</button>
    ++++
    <h2>{{count}}</h2>
    <button @click="sub">-</button>
    <div>
      test: {{doneTodos[0].text}} <br>
      length: {{doneTodosLength}}
    </div>
  </div>
</template>
export default {
  methods:{
    add(){
      this.$store.commit('add');
      // console.log(this);
    },
    sub(){
      this.$store.commit('sub');
    },
    ++++
    add_action(){
      this.$store.dispatch('add');
    }
    ++++
  }
}

複製程式碼

看到這裡有沒有想過當我們使用state中某一個資料時,我們只想用該資料中符合條件的資料。比如:

state:{
    count:0,
    todos: [
      { id: 1, text: 'text1--true', done: true },
      { id: 2, text: 'text2--false', done: false }
    ]
  }
複製程式碼

此時我們只想獲取state.todos中done為true的資料時我們應該怎麼獲取?
可能會有以下兩種方案:
1.每個在元件中首先獲取todos,然後使用filter方法過濾;
2.寫一個公共函式在每個元件中呼叫以下;
如果用到todos中done為true的元件很多,這兩種方法都是很不理想的。Vuex為此為我們引入了一個方法Getter。

Getter 用法


官方解釋:Vuex 允許我們在 store 中定義“getter”(可以認為是 store 的計算屬性)。就像計算屬性一樣,getter 的返回值會根據它的依賴被快取起來,且只有當它的依賴值發生了改變才會被重新計算。

在sore\index.js寫入:

  mutations:{ // 更改資料的方法
    add(state){
      state.count++
    },
    sub(state){
      state.count--
    }
  },
  +++
  getters:{  // 用法類似元件中的 computed, 可以認為是store的計算屬性
    doneTodos:state => { // Getter 接受 state 作為其第一個引數:
      return state.todos.filter(todo => todo.done)  // -> [{ id: 1, text: 'text1--true', done: true }]
    },
    // Getter 也可以接受其他 getter 作為第二個引數
    doneTodosLength:(state,getters) => {
      return getters.doneTodos.length // -> 1
    },
  +++
  }
複製程式碼

元件(HelloWorld.vue)中使用getters裡對應的方法:

<template>
  <div class="hello">

    <button @click="add">+</button>
    <h2>{{count}}</h2>
    <button @click="sub">-</button>

+++
    <div>
      test: {{doneTodos[0].text}} <br>
      length: {{doneTodosLength}}
    </div>
+++    
  </div>
</template>
<script>
export default {
  //...
    computed:{
    +++
        doneTodos(){
          return this.$store.getters.doneTodos // -> [{ id: 1, text: 'text1--true', done: true }]
        },
        doneTodosLength(){
          return this.$store.getters.doneTodosLength // -> 1
        }
    +++
  }
}
</script>
複製程式碼

本篇程式碼地址:github.com/xioasa/vue-…

相關文章