中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Vuex中this.$store.commit()和this.$store.dispatch()區別是什么

發布時間:2022-04-02 15:51:28 來源:億速云 閱讀:738 作者:iii 欄目:開發技術

這篇文章主要講解了“Vuex中this.$store.commit()和this.$store.dispatch()區別是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Vuex中this.$store.commit()和this.$store.dispatch()區別是什么”吧!

this.$store.commit()和this.$store.dispatch()的區別

兩個方法其實很相似,關鍵在于一個是同步,一個是異步

commit: 同步操作

this.$store.commit('方法名',值) //存儲
this.$store.state.'方法名' //取值

dispatch: 異步操作

this.$store.dispatch('方法名',值) //存儲
this.$store.getters.'方法名' //取值

當操作行為中含有異步操作,比如向后臺發送請求獲取數據,就需要使用action的dispatch去完成了,其他使用commit即可.

其他了解

  • commit => mutations, 用來觸發同步操作的方法.

  • dispatch => actions, 用來觸發異步操作的方法.

在store中注冊了mutation和action

在組件中用dispatch調用action,用commit調用mutation

Vuex應用實例this.$store.commit()觸發

新建文件夾store,store下

action.js

const actions = {}
export default actions;

getter.js

const getters = {}
export default getters;

mutation-types.js

export const publicSetEvent = 'publicSetEvent';

mutations.js

import {publicSetEvent} from './mutation-types';
const mutations = {
    [publicSetEvent]: (state, json) => {
    // 初始化默認,避免跳轉路由時的公用部分顯示的相互影響
       state.publicSet = {headTitle: true,headNav: false,sTitle: '頭部標題'}
// 是否顯示頭部title
        state.publicSet.headTitle = json.headTitle || state.publicSet.headTitle;
        // 是否顯示頭部tabbar切換
        state.publicSet.headNav = json.headNav || state.publicSet.headNav;
        // 頭部顯示的標題文字
        state.publicSet.sTitle = json.sTitle || state.publicSet.sTitle;
        // tabbar的標題文字及待辦badge數字
        state.publicSet.navList = json.navList || state.publicSet.navList;
    }
}
export default mutations;

index.js

import Vue from 'vue'
import Vuex from 'vuex'
import mutations from './mutations';
import getters from './getters';
import actions from './actions';
Vue.use(Vuex);
const state = {
    publicSet: {//設置公共頭
        headTitle: true,
        headNav: false,
        sTitle: '頭部標題'
    }
}
const store = new Vuex.Store({
    state,
    getters,
    mutations,
    actions
});
export default store;

頭部公共組件components文件夾下

v-header.vue

<template>
  <div class="v-header">
    <vTitle v-if="publicSet.headTitle" :stitle="publicSet.sTitle"></vTitle>
  </div>
</template>
<script>
import vTitle from './v-title';
import {mapState} from 'vuex';
export default{
   name:'v-header',
   components:{vTitle},
   data(){
    return{
      
    }
   },
   computed: {
       ...mapState(['publicSet'])
   }
}
</script>

v-title.vue

<template>
  <div class="v-title">
      <XHeader :left-options="{backText:''}" :title="stitle"></XHeader>
  </div>
</template>
<script>
import { XHeader } from 'vux'
export default{
  name:'v-title',
  props:['stitle'],
  components:{XHeader},
  data (){
      return {
      }
  },
  methods: {
  }
}
</script>
<style lang="less">
</style>

App.vue

<template>
  <div id="app">
    <vHeader></vHeader>
    <router-view/>
  </div>
</template>
<script>
import vHeader from '@/components/header/v-header'
export default {
  name: 'app',
  components:{vHeader}
}
</script>

main.js

import Vue from 'vue'
import App from './App'
import router from './router'
import Vuex from 'vuex'
import store from './store'
Vue.use(Vuex)
Vue.config.productionTip = false
new Vue({
  el: '#app',
  router,
  store,
  components: { App },
  template: '<App/>'
})

頁面調用index.vue

<template>
    <div class="index">
    </div>
</template>
<script>
export default{
    name:'index',
    data(){
        return{
        }
    },
    created(){
    },
    beforeRouteEnter(to,from,next){
        let option={
          headTitle:true,
      sTitle:'我是新標題'
        }
        console.log(option);
        next(vm=>{
          vm.$store.commit('publicSetEvent',option);
        })
    },
    methods:{
    }    
}
</script>
<style lang="less">
</style>

運行進去index頁面就可以看到公共頭了

感謝各位的閱讀,以上就是“Vuex中this.$store.commit()和this.$store.dispatch()區別是什么”的內容了,經過本文的學習后,相信大家對Vuex中this.$store.commit()和this.$store.dispatch()區別是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

页游| 岚皋县| 蓬莱市| 龙游县| 遂平县| 玉山县| 东丽区| 兴仁县| 泰州市| 合川市| 偏关县| 万年县| 顺义区| 乌海市| 定南县| 雷山县| 莎车县| 霸州市| 广平县| 大余县| 原阳县| 阳信县| 明溪县| 抚松县| 克东县| 精河县| 南雄市| 绍兴县| 吴旗县| 商水县| 手游| 邓州市| 北辰区| 常宁市| 满洲里市| 平凉市| 宿州市| 绵竹市| 天气| 兰溪市| 浦北县|