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

溫馨提示×

溫馨提示×

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

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

Vuex之理解Mutations的用法實例

發布時間:2020-08-22 10:49:15 來源:腳本之家 閱讀:180 作者:何凱 欄目:web開發

1.什么是mutations?

上一篇文章說的getters是為了初步獲取和簡單處理state里面的數據(這里的簡單處理不能改變state里面的數據),Vue的視圖是由數據驅動的,也就是說state里面的數據是動態變化的,那么怎么改變呢,切記在Vuexstore數據改變的唯一方法就是mutation

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

2.怎么用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,pryload);一般是個對象。

 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')
 })}}

3.源碼分析

registerMutation:初始化mutation

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:訂閱storemutation

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)
  }
 }
 }

 以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

政和县| 梁山县| 商河县| 历史| 海城市| 鄂托克前旗| 天水市| 沙雅县| 湘潭市| 灵武市| 台山市| 鄯善县| 乌兰浩特市| 八宿县| 克什克腾旗| 清远市| 麻阳| 宜兴市| 昌乐县| 临桂县| 华阴市| 外汇| 宁波市| 仙游县| 临泉县| 平阳县| 康保县| 葵青区| 岳阳市| 合肥市| 台安县| 武清区| 玉林市| 青浦区| 井陉县| 高台县| 阳西县| 阿瓦提县| 永丰县| 元朗区| 大庆市|