vuex最详细完整的使用用法

为什么使用vuex?

vuex主要是是做数据交互,父子组件传值可以很容易办到,但是兄弟组件间传值(兄弟组件下又有父子组件),或者大型spa单页面框架项目,页面多并且一层嵌套一层的传值,异常麻烦,用vuex来维护共有的状态或数据会显得得心应手。

需求:两个组件A和B,vuex维护的公共数据是 餐馆的名称 resturantName,默认餐馆名称是 飞歌餐馆,那么现在A和B页面显示的就是飞歌餐馆。如果A修改餐馆名称 为 A餐馆,则B页面显示的将会是 A餐馆,反之B修改同理。这就是vuex维护公共状态或数据的魅力,在一个地方修改了数据,在这个项目的其他页面都会变成这个数据。


①使用 vue-cli脚手架工具创建一个工程项目,工程目录,创建组件A和组件B路由如下:

路由如下:

import Vue from 'vue'

import Router from 'vue-router'

import componentsA from '@/components/componentsA'

import componentsB from '@/components/componentsB'

Vue.use(Router)

export default new Router({

  mode: 'history',

    routes: [

        {

        path: '/',

        name: 'componentsA',

        component: componentsA

        },

        {

            path: '/componentsA',

            name: 'componentsA',

            component: componentsA

        },

        {

            path: '/componentsB',

            name: 'componentsB',

            component: componentsB

        }

    ]

})

app.vue

<template>

  <div id="app">

    <router-view/>

  </div>

</template>

<script>

export default {

  name: 'App'

}

</script>

<style>

#app {

  font-family: 'Avenir', Helvetica, Arial, sans-serif;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  text-align: center;

  color: #2c3e50;

  margin-top: 60px;

}

</style>

②开始使用vuex,新建一个 sotre文件夹,分开维护 actions mutations getters

②在store/index.js文件中新建vuex 的store实例

*as的意思是 导入这个文件里面的所有内容,就不用一个个实例来导入了。

import Vue from 'vue'

import Vuex from 'vuex'

import * as getters from './getters' // 导入响应的模块,*相当于引入了这个组件下所有导出的事例

import * as actions from './actions'

import * as mutations from './mutations'

Vue.use(Vuex)

// 首先声明一个需要全局维护的状态 state,比如 我这里举例的resturantName

const state = {

    resturantName: '飞歌餐馆' // 默认值

    // id: xxx  如果还有全局状态也可以在这里添加

    // name:xxx

}

// 注册上面引入的各大模块

const store = new Vuex.Store({

    state,    // 共同维护的一个状态,state里面可以是很多个全局状态

    getters,  // 获取数据并渲染

    actions,  // 数据的异步操作

    mutations  // 处理数据的唯一途径,state的改变或赋值只能在这里

})

export default store  // 导出store并在 main.js中引用注册。

③actions

// 给action注册事件处理函数。当这个函数被触发时候,将状态提交到mutations中处理

export function modifyAName({commit}, name) { // commit 提交;name即为点击后传递过来的参数,此时是 'A餐馆'

    return commit ('modifyAName', name)

}

export function modifyBName({commit}, name) {

    return commit ('modifyBName', name)

}

// ES6精简写法

// export const modifyAName = ({commit},name) => commit('modifyAName', name)

④mutations

// 提交 mutations是更改Vuex状态的唯一合法方法

export const modifyAName = (state, name) => { // A组件点击更改餐馆名称为 A餐馆

    state.resturantName = name // 把方法传递过来的参数,赋值给state中的resturantName

}

export const modifyBName = (state, name) => { // B组件点击更改餐馆名称为 B餐馆

    state.resturantName = name

}

⑤getters

// 获取最终的状态信息

export const resturantName = state => state.resturantName

⑥在main.js中导入 store实例

// The Vue build version to load with the `import` command

// (runtime-only or standalone) has been set in webpack.base.conf with an alias.

import Vue from 'vue'

import App from './App'

import router from './router'

import store from './store'

Vue.config.productionTip = false

/* eslint-disable no-new */

new Vue({

  el: '#app',

  router,

  store,  // 这样就能全局使用vuex了

  components: { App },

  template: '<App/>'

})


④在组件A中,定义点击事件,点击 修改 餐馆的名称,并把餐馆的名称在事件中用参数进行传递。


...mapactions 和 ...mapgetters都是vuex提供的语法糖,在底层已经封装好了,拿来就能用,简化了很多操作。

其中...mapActions(['clickAFn']) 相当于this.$store.dispatch('clickAFn',{参数}),mapActions中只需要指定方法名即可,参数省略。

...mapGetters(['resturantName'])相当于this.$store.getters.resturantName

<template>

  <div class="componentsA">

      <P class="title">组件A</P>

      <P class="titleName">餐馆名称:{{resturantName}}</P>

      <div>

            <!-- 点击修改 为 A 餐馆 -->

          <button class="btn" @click="modifyAName('A餐馆')">修改为A餐馆</button>

      </div>

      <div class="marTop">

          <button class="btn" @click="trunToB">跳转到B页面</button>

      </div>

  </div>

</template>

<script>

import {mapActions, mapGetters} from 'vuex'

export default {

  name: 'A',

  data () {

    return {

    }

  },

  methods:{

      ...mapActions( // 语法糖

          ['modifyAName'] // 相当于this.$store.dispatch('modifyName'),提交这个方法

      ),

      trunToB () {

          this.$router.push({path: '/componentsB'}) // 路由跳转到B

      }

  },

  computed: {

      ...mapGetters(['resturantName']) // 动态计算属性,相当于this.$store.getters.resturantName

  }

}

</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->

<style scoped>

    .title,.titleName{

        color: blue;

        font-size: 20px;

    }

    .btn{

        width: 160px;

        height: 40px;

        background-color: blue;

        border: none;

        outline: none;

        color: #ffffff;

        border-radius: 4px;

    }

    .marTop{

        margin-top: 20px;

    }

</style>

    B组件同理

<template>

  <div class="componentsB">

      <P class="title">组件B</P>

      <P class="titleName">餐馆名称:{{resturantName}}</P>

      <div>

          <!-- 点击修改 为 B 餐馆 -->

          <button class="btn" @click="modifyBName('B餐馆')">修改为B餐馆</button>

      </div>

      <div class="marTop">

          <button class="btn" @click="trunToA">跳转到A页面</button>

      </div>

  </div>

</template>

<script>

import {mapActions, mapGetters} from 'vuex'

export default {

  name: 'B',

  data () {

    return {

    }

  },

  methods:{

      ...mapActions( // 语法糖

          ['modifyBName'] // 相当于this.$store.dispatch('modifyName'),提交这个方法

      ),

      trunToA () {

          this.$router.push({path: '/componentsA'}) // 路由跳转到A

      }

  },

  computed: {

      ...mapGetters(['resturantName']) // 动态计算属性,相当于this.$store.getters.resturantName

  }

}

</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->

<style scoped>

    .title,.titleName{

        color: red;

        font-size: 20px;

    }

    .btn{

        width: 160px;

        height: 40px;

        background-color: red;

        border: none;

        outline: none;

        color: #ffffff;

        border-radius: 4px;

    }

    .marTop{

        margin-top: 20px;

    }

</style>

最后:本文完全手打,如需转载请注明出处,谢谢,如果不明白的地方欢迎给我留言哦。

github仓库地址:https://github.com/byla678/vuexdemo.git

————————————————

版权声明:本文为CSDN博主「飞歌Fly」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/qq_35430000/article/details/79412664

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351