溫馨提示×

溫馨提示×

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

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

vuex的核心概念和基本使用是怎么樣的

發(fā)布時間:2021-12-15 14:26:59 來源:億速云 閱讀:161 作者:柒染 欄目:開發(fā)技術(shù)

vuex的核心概念和基本使用是怎么樣的,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

    介紹

    Vuex是實現(xiàn)組件全局狀態(tài)(數(shù)據(jù))管理的一種機(jī)制,可以方便的實現(xiàn)組件之間的數(shù)據(jù)共享

    開始

    安裝

    ①直接下載方式

    創(chuàng)建一個 vuex.js 文件 將https://unpkg.com/vuex這個網(wǎng)址里的內(nèi)容放到該文件夾里。

    ②CND方式
    <script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.js"></script>
    ③NPM方式
    npm install vuex --save
    ④Yarn方式
    yarn add vuex

    NPM方式安裝的使用方式

    1.在 scr 文件里創(chuàng)建一個 store / index.js 的文件夾,寫入以下內(nèi)容。

    import Vue from 'vue'
    import Vuex from 'vuex'
    Vue.use(Vuex)
    export default new Vuex.Store({
    state: {},
    mutations: {},
    actions: {},
    modules: {}
    })

    2.在main.js 里引入,然后掛載到 Vue 實例里

    import Vue from 'vue'
    import store from './store'
    new Vue({
      render: h => h(App),
      store
    }).$mount('#app')

    store概念及使用

    概念:

    就是組件之間共享數(shù)據(jù)的。

    只有 mutations 才能修改 store 中的數(shù)據(jù)

    使用:

    先定義后使用

    定義

    state: {
      num: 0
    }

    使用

    方式1(推薦)

    <div>{{ numAlias }}</div>
    
    import { mapState } from 'vuex'
    export default {
      //計算函數(shù)
      computed: mapState({
        // 傳字符串參數(shù) 'count' 等同于 `state => state.count`
        numAlias: 'num',//常用key是自己起的名隨便 value接收的數(shù)據(jù)
        // 箭頭函數(shù)可使代碼更簡練
        count: state => state.count,
        // 為了能夠使用 `this` 獲取局部狀態(tài),必須使用常規(guī)函數(shù)
        countPlusLocalState (state) {
          return state.count + this.localCount
        }
        //可以定義其余的計算函數(shù)
      }),
      //或者這樣
      //計算函數(shù)
      computed: {
        mapState(['count'])
      }
    }

    方式2

    <div>{{ $store.state.count }}</div>

    mutations概念及使用

    概念:

    修改store里的數(shù)據(jù),嚴(yán)格規(guī)定不能在其余的地方修改store的數(shù)據(jù),mutations里不要執(zhí)行異步操作。

    mutation 必須同步執(zhí)行,不能異步執(zhí)行。

    使用:

    先定義方法后使用

    定義

    mutations: {
    	//increment自定義方法 store參數(shù)是store數(shù)據(jù), parameter參數(shù)是接收到的數(shù)據(jù),可不要
        increment (state, parameter) {
            // 變更狀態(tài)
            state.num++
        }
    }

    使用

    方式1(推薦使用)

    import { mapState, mapMutations } from 'vuex'
    //方法
    methods: {
    	...mapMutations([
    	    // mutations自定義的方法名
        	'increment'
        ]),
        love() {
        	// 直接this調(diào)用 this.increment('需要傳過去的數(shù)據(jù),可不要')
            this.increment('Bin')
        }
    }

    方式2

    methods: {
        love() {
        	// this.$store.commit('自定義的名稱', '傳過去的數(shù)據(jù),可不傳')
        	this.$store.commit('increment', 'data')
        }
    }

    action概念及使用

    概念:

    用于處理異步操作。

    如果通過異步操作變更數(shù)據(jù),必須通過action,而不能使用mutation,但是在action中還是要通過觸發(fā)mutation的方式間接變更數(shù)據(jù)。

    Action 類似于 mutation,不同在于:

    • Action 提交的是 mutation,而不是直接變更數(shù)據(jù)(狀態(tài))。

    • Action 可以包含任意異步操作。

    定義

    mutations: {
    	//increment自定義方法 store參數(shù)是store數(shù)據(jù), parameter參數(shù)是接收到的數(shù)據(jù),可不要
        increment (state, parameter) {
            // 變更狀態(tài)
            state.num++
        }
    },
    actions: {
    	//add 自定義方法 context是參數(shù),可以把它當(dāng)作vuex的實例
        add(context) {
        	//可以通過context.commit('mutations中需要調(diào)用的方法')
        	context.commit('increment')
        }
    }

    使用

    方式1(推薦)

    import { mapState, mapMutations, mapActions } from 'vuex'
    export default {
      methods: {
        ...mapActions([
          'add', // 將 `this.add()` 映射為 `this.$store.dispatch('add')`
          // `mapActions` 也支持載荷:
          'add' // 將 `this.add(amount)` 映射為 `this.$store.dispatch('add', amount)`
        ]),
        ...mapActions({
          add: 'add' // 將 `this.add()` 映射為 `this.$store.dispatch('increment')`
        }),
        love() {
        	// 直接this調(diào)用 this.add('需要傳過去的數(shù)據(jù),可不要')
        	this.add(data)
        }
      }
    }

    方式2

    methods: {
        love() {
        	// this.$store.dispatch('自定義的名稱', '傳過去的數(shù)據(jù),可不傳')
        	this.$store.dispatch('add', data)
        }
    }

    getters概念及使用

    概念:

    getter用于對store中的數(shù)據(jù)進(jìn)行加工處理形成新的數(shù)據(jù)。getting可以對store中已有的數(shù)據(jù)加工處理之后形成新的數(shù)據(jù),類似Vue的計算縮寫。

    定義

    state: {
      num: 0
    },
    getters: {
        doneTodos: state => {
        	return state.num = 10
        }
    }

    使用

    方式1(推薦)

    <div>{{ doneTodos }}</div>
    
    import { mapState, mapMutations, mapActions, mapGetters } from 'vuex'
    export default {
      //計算函數(shù)
      computed: {
      	...mapState(['count']),
      	...mapmapGetters(['doneTodos'])
      }
    }

    方式2

    <div>{{ $store.getters.doneTodos }}</div>

    看完上述內(nèi)容,你們掌握vuex的核心概念和基本使用是怎么樣的的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

    向AI問一下細(xì)節(jié)

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

    AI