理解Vuex的輔助函數mapState, mapActions, mapMutations用法

在講解這些屬性以前,假如咱們項目的目錄的結構以下:javascript

### 目錄結構以下:
demo1                                       # 工程名
|   |--- dist                               # 打包後生成的目錄文件             
|   |--- node_modules                       # 全部的依賴包
|   |--- app
|   | |---index
|   | | |-- views                           # 存放全部vue頁面文件
|   | | | |-- parent.vue                    # 父組件
|   | | | |-- child.vue                     # 子組件
|   | | | |-- index.vue
|   | | |-- components                      # 存放vue公用的組件
|   | | |-- js                              # 存放js文件的
|   | | |-- store                           # store倉庫
|   | | | |--- actions.js
|   | | | |--- mutations.js
|   | | | |--- state.js
|   | | | |--- mutations-types.js
|   | | | |--- index.js
|   | | |-- app.js                          # vue入口配置文件
|   | | |-- router.js                       # 路由配置文件
|   |--- views
|   | |-- index.html                        # html文件
|   |--- webpack.config.js                  # webpack配置文件 
|   |--- .gitignore  
|   |--- README.md
|   |--- package.json
|   |--- .babelrc                           # babel轉碼文件

具體理解vuex的項目構建能夠看這篇文章(http://www.javashuo.com/article/p-fldhfhhs-ko.html). 下面講解的也是在這篇文章項目結構基礎之上進行講解的。固然若是你對 vuex熟悉的話,就不用看了,直接跳過便可。html

注意:下面的代碼都是在 webpack+vue+route+vuex 中構建的,能夠把下面的代碼 複製到該項目中運行便可。vue

一:理解mapState的使用java

當咱們的組件須要獲取多個狀態的時候,將這些狀態都聲明爲計算屬性會有些重複和冗餘,爲了解決這個問題,咱們可使用mapState的輔助函數來幫助咱們生成計算屬性。node

mapState函數返回的是一個對象,咱們須要使用一個工具函數將多個對象合併爲一個,這樣就可使咱們將最終對象傳給computed屬性。webpack

上面的表述可能會有些模糊,下面咱們來作個簡單的demo來演示一下:git

項目架構如上面示意圖所示,先看看 app/index/store/state.js 代碼以下:github

export default {
  add: 0,
  errors: '',
  counts: 0
};

app/index/store/mutations.js 代碼以下:web

import * as types from './mutations-types';

export default {
  [types.ADD] (state, payload) {
    state.add = payload;
  },
  [types.SETERROR] (state, payload) {
    state.errors = payload;
  },

  [types.COUNTASYNC] (state, payload) {
    state.counts = payload;
  }
}

app/index/store/mutations-types.js 代碼以下:vuex

// 新增list
export const ADD = 'ADD'; 

// 設置錯誤提示
export const SETERROR = 'SETERROR';

// 異步操做count
export const COUNTASYNC = 'COUNTASYNC';

app/index/store/index.js 代碼以下:

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

import state from './state';
import mutations from './mutations';
import actions from './actions';

Vue.use(Vuex);

Vue.config.devtools = true;

export default new Vuex.Store({
  state,
  mutations,
  actions
});

app/index/store/actions.js 代碼請看github

如上代碼所示,如今咱們在 app/index/views/parent.vue 這個路由下,在mounted生命週期打印一下 console.log(this);這句代碼的時候,以下代碼:

<template>
  <div></div>
</template>
<script type="text/javascript">
  export default {
    data() {
      return {
        
      }
    },
    methods: {
      
    },
    mounted() {
      console.log(this);
    }
  }
</script>

在瀏覽器運行後,以下圖所示:

若是咱們想獲取add,或 count的時候,咱們須要使用 this.$store.state.add 或 this.$store.state.count 這樣的。

如今咱們使用 mapState的話,代碼就變成以下了:

<template>
  <div>
    
  </div>
</template>
<script type="text/javascript">
  import { mapState } from 'vuex';
  export default {
    data() {
      return {
        
      }
    },
    methods: {
      
    },
    computed: {
        ...mapState({
          add: state => state.add,
          counts: state => state.counts
        })
    },
    mounted() {
      console.log(this.add); // 打印出 0
      console.log(this.counts); // 打印 0 
    }
  }
</script>

如上代碼,咱們使用 mapState工具函數會將store中的state映射到局部計算屬性中。
咱們在mounted方法內,直接使用 this.xx 便可使用到對應computed中對應的屬性了。也就是 咱們使用 this.add 就直接映射到 this.$store.state.add 了 。

固然mapState也能夠接受一個數組,以下簡單代碼:

computed: {
  /*
  ...mapState({
    add: state => state.add,
    counts: state => state.counts
  })
  */
  ...mapState([
    'add',
    'counts'
  ])
},
mounted() {
  console.log(this);
}

而後咱們再在控制檯查看輸出的this的值,以下:

能夠看到,接受數組也是能夠的,在mounted生命週期內,咱們直接可使用 this.add 或 this.counts 能夠獲取到值了。

切記:mapState的屬性的時候,必定要和state的屬性值相對應,也就是說 state中定義的屬性值叫add,那麼mapState就叫add,若是咱們改爲add2的話,就獲取不到add的值了,而且add2的值也是 undefined,以下所示:

二:理解mapActions的使用
mapActions 的思想 和 mapState 同樣的,下面咱們直接看代碼的使用方法哦,以下代碼:

若是咱們不使用 mapActions 的話,咱們調用某個方法須要以下代碼所示:

<template>
  <div></div>
</template>
<script type="text/javascript">
  export default {
    data() {
      return {
        
      }
    },
    created() {
      this.test();
    },
    methods: {
      test() {
        // 調用action 須要時使用 this.$store.dispatch 這樣的
        Promise.all([this.$store.dispatch('commonActionGet', ['getPower', {}])]).then((res) =>{
          
        });
      }
    },
    computed: {

    },
    mounted() {
      
    }
  }
</script>

下面咱們使用 mapActions的話,代碼以下所示:

<template>
  <div>  
  </div>
</template>
<script type="text/javascript">
  import { mapActions } from 'vuex';
  export default {
    data() {
      return {
        
      }
    },
    created() {
      this.test();
    },
    methods: {
      test() {
        // 調用
        Promise.all([this.commonActionGet(['getPower', {}])]).then((res) => {

        });
      },
      // mapActions 使用方法一 將 this.commonActionGet() 映射爲 this.$store.dispatch('commonActionGet')
      ...mapActions(['commonActionGet', 'commonActionGetJSON', 'commonActionPost', 'commonActionPostJSON'])
      /*
       // 第二種方式
       ...mapActions({
         'commonActionGet': 'commonActionGet',
         'commonActionGetJSON': 'commonActionGetJSON',
         'commonActionPost': 'commonActionPost',
         'commonActionPostJSON': 'commonActionPostJSON'
       })
      */
    }
  }
</script>

三:理解 mapMutations 的使用。

首先咱們不使用 mapMutations的話,調用mutations裏面的方法,是以下代碼:

<template>
  <div>  
  </div>
</template>
<script type="text/javascript">
  export default {
    data() {
      return {
        
      }
    },
    created() {
      this.test();
    },
    methods: {
      test() {
        // 調用Mutations 須要時使用 this.$store.commit('ADD', 1) 這樣的
        Promise.all([this.$store.commit('ADD', 1)]).then(() =>{
          console.log(this);
        });
      }
    }
  }
</script>

打印 如上 this代碼後,看到以下圖所示:

想獲取值,使用 this.$store.state.add 就等於1了。

下面咱們使用 mapMutations話,代碼須要改爲以下代碼:

<template>
  <div>
  </div>
</template>
<script type="text/javascript">
  import { mapMutations } from 'vuex';
  export default {
    data() {
      return {
        
      }
    },
    created() {
      this.test();
    },
    methods: {
      test() {
        // 使用 mapMutations 調用方式以下:
        Promise.all([this.ADD(1)]).then(() => {
          console.log(this);
        });
      },
      /*
      // mapMutations 使用方法1
      ...mapMutations(['ADD']), // 會將 this.ADD 映射成 this.$store.commit('ADD') 
      */
      // mapMutations 使用方法2
      ...mapMutations({
        'ADD': 'ADD'
      })
    }
  }
</script>
相關文章
相關標籤/搜索