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

溫馨提示×

溫馨提示×

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

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

Vuex中Mutations的使用方法

發布時間:2021-02-18 14:46:53 來源:億速云 閱讀:473 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關Vuex中Mutations的使用方法的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

通俗的理解mutations,里面裝著一些改變數據方法的集合,這是Vuex設計很重要的一點,就是把處理數據邏輯方法全部放在mutations里面,使得數據和視圖分離。

怎么用mutations?

mutation結構:每一個mutation都有一個字符串類型的事件類型(type)和回調函數(handler),也可以理解為{type:handler()},這和訂閱發布有點類似。先注冊事件,當觸發響應類型的時候調用handker(),調用type的時候需要用到store.commit方法。

 const store = new Vuex.Store({
    state: {
        count: 1
        },
    mutations: {
   		 increment (state) {      //注冊事件,type:increment,handler第一個參數是state;
  		  // 變更狀態
   		state.count++}}})
   store.commit('increment')   //調用type,觸發handler(state)

載荷(payload):簡單的理解就是往handler(stage)中傳參handler(stage,payload);一般是個對象。

  mutations: {
 increment (state, n) {
     state.count += n}}
 store.commit('increment', 10)

mutation-types:將常量放在單獨的文件中,方便協作開發。

mutation-types.js

export const SOME_MUTATION = 'SOME_MUTATION'

store.js

import Vuex from 'vuex'
import { SOME_MUTATION } from './mutation-types'
  const store = new Vuex.Store({
    state: { ... },
    mutations: {
     // 我們可以使用 ES2015 風格的計算屬性命名功能來使用一個常量作為函數名
    [SOME_MUTATION] (state) {
    // mutate state
  }
}
})

commit:提交可以在組件中使用 this.$store.commit('xxx') 提交 mutation,或者使用 mapMutations 輔助函數將組件中的 methods 映射為 store.commit 調用(需要在根節點注入 store)。

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

源碼分析

function registerMutation (store, type, handler, path = []) {
 //4個參數,store是Store實例,type為mutation的type,handler,path為當前模塊路徑
    const entry = store._mutations[type] || (store._mutations[type] = 
[])  //通過type拿到對應的mutation對象數組
     entry.push(function wrappedMutationHandler (payload) {
     //將mutation包裝成函數push到數組中,同時添加載荷payload參數    
     handler(getNestedState(store.state, path), payload)
     //通過getNestedState()得到當前的state,同時添加載荷payload參數
   })
 }

commit:調用mutation

commit (type, payload, options) {
  // 3個參數,type是mutation類型,payload載荷,options配置
    if (isObject(type) && type.type) {
       // 當type為object類型,
      options = payload
      payload = type
      type = type.type
  }
 const mutation = { type, payload }
 const entry = this._mutations[type]
   // 通過type查找對應的mutation
 if (!entry) {
  //找不到報錯
   console.error(`[vuex] unknown mutation type: ${type}`)
   return
 }
 this._withCommit(() => {
   entry.forEach(function commitIterator (handler) {
   // 遍歷type對應的mutation對象數組,執行handle(payload)方法
   //也就是開始執行wrappedMutationHandler(handler)
     handler(payload)
   })
 })
 if (!options || !options.silent) {
   this._subscribers.forEach(sub => sub(mutation, this.state))
    //把mutation和根state作為參數傳入
 }
}

subscribers:訂閱store的mutation

subscribe (fn) {
const subs = this._subscribers
if (subs.indexOf(fn) < 0) {
  subs.push(fn)
  }
return () => {
  const i = subs.indexOf(fn)
  if (i > -1) {
    subs.splice(i, 1)
    }
  }
 }

感謝各位的閱讀!關于“Vuex中Mutations的使用方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

博罗县| 美姑县| 曲周县| 若羌县| 慈溪市| 阿荣旗| 松阳县| 大洼县| 盐山县| 九寨沟县| 泰安市| 民县| 新巴尔虎右旗| 南木林县| 渑池县| 苏尼特右旗| 米林县| 胶南市| 旬邑县| 平和县| 佛山市| 体育| 崇义县| 温宿县| 新野县| 噶尔县| 长子县| 武隆县| 贞丰县| 玉树县| 沧州市| 舒兰市| 固安县| 平顺县| 太仆寺旗| 修水县| 宜城市| 无为县| 安远县| 台湾省| 聊城市|