亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Vue中mapMutations傳遞參數方式是什么

發布時間:2022-04-12 13:45:46 來源:億速云 閱讀:389 作者:iii 欄目:開發技術

本篇內容主要講解“Vue中mapMutations傳遞參數方式是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue中mapMutations傳遞參數方式是什么”吧!

    通過子組件定義的方法傳遞參數

    在…mapMutations引用

    不多逼逼,看代碼!

    store文件中:

    import Vuex from 'vuex';
    import Vue from 'vue';
    Vue.use(Vuex);
    let store = new Vuex.Store({
        state: {
            name: 'hahahah',
            age: '19',
        },
        mutations: {
            changeName(state, params) {
                console.log(params);
                state.name = params.name 
            },
            changeAge(state, params) {
                state.age = params.age
            }
        },
    })
    export default store

    VueDemo中:

    <template>
      <div>
        <h5>這里是son1組件</h5>
        name:{{name}}
        age:{{age}}
        <button @click="hehe">改名字</button>
      </div>
    </template>
    <script>
    import { mapState, mapMutations } from "vuex";
    export default {
      data() {
        return {
          list: {
            name: "6666"
          }
        };
      },
      computed: {
        ...mapState(["name", "age"])
      },
      methods: {
        hehe() {
          this.changeName(this.list);
        },
        ...mapMutations(["changeName"])
      }
    };
    </script>
    <style>
    </style>

    當然也可以寫直接傳遞

    state.age = params
    <button @click="changeName(555555)">改名字</button>

    省略data傳參

    ...mapMutations(["changeName"])

    關于mapMutations的作用

    mapMutations工具函數會將store中的commit方法映射到組件的methods中。和mapActions的功能幾乎一樣,我們來直接看它的實現:

    export function mapMutations (mutations) {
        const res = {}
        normalizeMap(mutations).forEach(({ key, val }) => {
            res[key] = function mappedMutation (...args) {
                return this.$store.commit.apply(this.$store, [val].concat(args))
            }
        })
        return res
    }

    函數的實現幾乎也和 mapActions 一樣,唯一差別就是映射的是 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')
            })
        }
    }

    經過mapMutations函數調用后的結果,如下所示:

    import { mapActions } from 'vuex'
    export default {
        // ...
        methods: {
            increment(...args) {
                return this.$store.commit.apply(this.$store, ['increment'].concat(args))
            }
            add(...args) {
                return this.$store.commit.apply(this.$store, ['increment'].concat(args))
            }
        }
    }

    到此,相信大家對“Vue中mapMutations傳遞參數方式是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

    向AI問一下細節

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

    AI

    肃宁县| 女性| 平邑县| 丹东市| 江口县| 海原县| 张北县| 牙克石市| 黎川县| 安远县| 石台县| 浙江省| 逊克县| 旬阳县| 马山县| 铜山县| 永清县| 兴业县| 安达市| 西畴县| 澳门| 隆尧县| 怀化市| 东源县| 延安市| 中宁县| 本溪| 文山县| 三穗县| 常山县| 榆树市| 安塞县| 宜丰县| 宣武区| 江北区| 麻城市| 兴海县| 九台市| 永顺县| 太白县| 苏尼特左旗|