溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue前端開發(fā)輔助函數狀態(tài)管理的示例分析

發(fā)布時間:2021-10-11 09:26:42 來源:億速云 閱讀:144 作者:小新 欄目:開發(fā)技術

這篇文章主要介紹vue前端開發(fā)輔助函數狀態(tài)管理的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

mapState

當一個組件需要獲取多個狀態(tài)時候,將這些狀態(tài)都聲明為計算屬性會有些重復和冗余。為了解決這個問題,我們可以使用 mapState 輔助函數幫助我們生成計算屬性。不使用mapState時,獲取對象狀態(tài),通常放在使用組件的computes屬性中,使用方式為:

  //....
  computed: {
        count: function(){
            return this.$store.state.count
        }
    }
 //....

使用mapState可以簡化為:

import { mapState } from 'vuex'  //引入mapState對象 
export default {
  // ...
  computed: mapState({
    // 箭頭函數可使代碼更簡練
    count: state => state.count,
  })
}
或者
import { mapState } from 'vuex'  //引入mapState對象 
export default {
  // ...
  computed: mapState({
    'count', //與state名稱一致
     countAlias:'count' //countAlias是在引用組件中使用的別名
  })
}

mapGetters

mapGetters 輔助函數僅僅是將 store 中的 getters 映射到局部計算屬性,與state類似。由計算函數代碼簡化為;

import { mapGetters } from 'vuex'
export default {
  // ...
  computed: {
  // 使用對象展開運算符將 getters 混入 computed 對象中
    ...mapGetters([
      'countDouble',
      'CountDoubleAndDouble',
      //..
    ])
  }
}

mapGetters也可以使用別名。

mapMutations

使用 mapMutations 輔助函數將組件中的methods映射為store.commit調用,簡化后代碼為:

import { mapMutations } from 'vuex'
export default {
  //..
  methods: {
    ...mapMutations([
      'increment' // 映射 this.increment() 為 this.$store.commit('increment')
    ]),
    ...mapMutations({
      add: 'increment' // 映射 this.add() 為 this.$store.commit('increment')
    })
  }
}

mapActions

使用 mapActions 輔助函數將組件的methods映射為store.dispatch調用,簡化后代碼為:

import { mapActions } from 'vuex'
export default {
  //..
  methods: {
    ...mapActions([
      'incrementN' //映射 this.incrementN() 為 this.$store.dispatch('incrementN')
    ]),
    ...mapActions({
      add: 'incrementN' //映射 this.add() 為 this.$store.dispatch('incrementN')
    })
  }
}

示例

沿用vue狀態(tài)管理(二)中的示例,使用輔助函數完成。在CountChange和ComputeShow兩個組件使用了輔助函數,其余代碼無需改動。
在ComputeShow使用了mapState,mapGetters兩個輔助函數,代碼如下

<template>
  <div align="center" >
    <p>以下是使用computed直接獲取stores中的狀態(tài)數據,狀態(tài)數據發(fā)生變化時,同步刷新</p>
    <h2>使用computed接收 state:{{ computedState }}</h2>
    <h2>使用computed接收Getters:{{ computedGetters }}</h2>
  </div>
</template>
<script>
  import { mapState,mapGetters } from 'vuex'  //引入mapState,mapGetters對象
  export default {
    name: 'ComputeShow',
    computed:{
    ...mapState({
      computedState:'count'  //別名:computedState
    }),
    ...mapGetters({
      computedGetters:'getChangeValue' //別名:computedGetters
    })
    }
  }
</script>
<style>
</style>

建議使用map時,增加別名,這樣就和stores里面內容脫耦。在CountChange使用了mapMutations和mapActions兩個輔助函數,代碼如下

<template>
  <div align="center">
    <input type="number" v-model="paramValue" />
    <button @click="addNum({res: parseInt(paramValue)})">+增加</button>
    <button @click="subNum">-減少</button>
  </div>
</template>
<script>
  import {
    mapMutations,
    mapActions
  } from 'vuex' //引入mapMutations、mapActions對象
  export default {
    name: 'CountChange',
    data() {
      return {
        paramValue: 1,
      }
    },
    methods: {
      ...mapMutations({
        subNum: 'sub'  //增加別名subNum
      }),
      ...mapActions({
        addNum: 'increment' //映射 this.incrementN() 為 this.$store.dispatch('incrementN')
      })
    }
  }
</script>
<style>
</style>

同樣給stores中的方法制定別名,當需要傳參數時,通過別名將參數傳遞給actions或mutations。如:"addNum({res: parseInt(paramValue)})"中傳送了一個對象{res:‘'}

以上是“vue前端開發(fā)輔助函數狀態(tài)管理的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI