91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

    栾城县| 万山特区| 宜兴市| 大荔县| 明星| 获嘉县| 静宁县| 德保县| 天全县| 汝南县| 富川| 霍林郭勒市| 营山县| 句容市| 鹤山市| 乌鲁木齐县| 蓝山县| 康马县| 华亭县| 灵台县| 定边县| 修文县| 贵阳市| 桃源县| 汝阳县| 诸暨市| 股票| 吉木萨尔县| 台湾省| 尼木县| 高要市| 古田县| 两当县| 东山县| 屏边| 偏关县| 灌阳县| 白沙| 行唐县| 田东县| 晋城|