Vuex 使用理解

1.Vuex 概述

1.1 组件之间共享数据的方式

父向子传值:v-bind 属性绑定
子向父传值:v-on 事件绑定
兄弟组件之间共享数据:EventBus
$on 接收数据的那个组件
$emit 发送数据的那个组件

1.2 Vuex是说明

Vuex 是实现组件全局状态(数据)管理的一种机制,可以方便的实现组件之间数据的共享。

1.3 使用Vuex 统一管理状态的好处

①能够在vuex中集中管理共享的数据,易于开发和后期维护
②能够高效的实现组件之间的数据共享,提高开发效率
③储存在vuex中的数据都是响应式的,能够实时保持数据与页面的同步

一般情况下,只有组件之间共享的数据,才有必要存储到vuex中;对于组件中的私有数据,依旧存储在组件自身的data中即可。

2.Vuex 的基本使用

2.1 安装 Vuex依赖包
npm install vuex --save
yarn add vuex
2.2 导入 Vuex 包
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
2.3 创建 store 对象
const store = new Vuex.Store({
	// state 中存放的就是全局共享的数据
	state: {
	    count: 0
	 }
})
2.4 将 store 对象挂载到vue实例中
new Vue({
	  el: '#app',
	  // 将创建的共享数据对象,挂载到 vue 实例中
	  // 所有的组件,就可以直接从 store 中获取全局数据了
	  store
})

store.js
在这里插入图片描述
main.js
在这里插入图片描述

3.Vuex 的核心概念

3.1 核心概念概述

Vuex中的主要核心概念如下:

  • State
  • Mutation
  • Action
  • Getter
3.2 State

State 提供唯一公共数据源,所有共享数据都要统一放到Store的State中进行存储。

// 创建store数据源,提供唯一公共数据
const store = new Vuex.Store({
	state: { count: 0 }
})

组件访问State中数据的第一种方式:

this.$store.state.全局数据名称
如
this.$store.state.count 

在这里插入图片描述

组件访问State中数据的第二种方式:

// 从 vuex 中按需求导入 mapState  函数
import { mapState } from 'vuex'

通过刚才导入的 mapState 函数,将当前组件需要的全部数据,映射为当前组件的 computed 计算属性:

computed: {
	...mapState([ 'count'])
}

在这里插入图片描述

3.3 Mutation

Mutation 用于变更 Store 中的数据

使用 this.$store.state.count = 10 虽然可以修改 state中的数据 但是不符合规范.
① 只能通过 Mutation 变更 Store 数据,不可以直接操作 Store 中数据。
② 通过这种方式虽然操作起来稍微繁琐一些,但是可以集中监控所有数据的变化。

3.3.1 第一种方式
// 定义 Mutation
const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    add(state) {
      // 变更状态
      state.count++
    }
  }
})
// 触发Mutation
methods:{
	add(){
		//触发 mutation 的第一种方式
		this.$store.commit('add')
	}
}

在这里插入图片描述
在这里插入图片描述
在触发 Mutations 时传递参数:

// 定义 Mutation
const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
  	// step就是外界传递的参数
    addN(state,step) {
      // 变更状态
      state.count += step;
    }
  }
})
// 触发Mutation
methods:{
	addN(){
		this.$store.commit('addN',1)
	}
}

在这里插入图片描述在这里插入图片描述

3.3.2 第二种方式
//1.从 vuex 中按需导入 mapMutations 函数
import { mapMutations } from 'vuex'

通过刚才导入的 mapMutations 函数,将需要的 mutations 函数,映射为当前组件的 methods 方法:

//2.将指定的 mutaions 函数,映射为当前组件的 methods 函数
methods:{
 	...mapMutations(['add','addN'])
}
3.4 Action

Action 用于处理异步任务。
如果通过异步操作变更数据,必须通过 Action,而不能使用Mutation,但是在Action 中还是要通过触发 Mutation 的方式间接变更数据。

const store = new Vuex.Store({
	mutations:{
		add(state){
			state.count ++;
		}
	},
	actions:{
		addAsync(context){
			setTimeout(() =>{
				context.commit('add')
			},1000)
		}
	}
})
3.4.1 触发Action 的第一种方式
//触发 Action
methods:{
	handle(){
		// 触发 action 的第一种方式
		this.$store.dispatch('addAsync')
	}
}
3.4.2 触发Action 时携带参数
//定义 Action
const store = new Vuex.Store({
	mutations:{
		addN(state,step){
			state.count += step;
		}
	},
	actions:{
		addNasync(context,step){
			setTimeout(() =>{
				context.commit('addN',step)
			},1000)
		}
	}
})
// 触发Action
methods:{
	handle(){
		//在调用 dispatch函数
		//触发 actions 时携带参数
		this.$store.dispatch('addNasync',5)
	}
}
3.4.3 触发Action 的第二种方式
// 1.从 vuex.dispatch() 是触发actions 的第一种方式。触发 actions 的第二种方式
import { mapActions } from 'vuex'
// 2.将指定的 actions 函数,映射为当前组件的 methods 函数
methods:{
	...mapActions(['addAsync','addNASync'])
}
3.5 Getter

Getter 用于对Store 中的数据进行加工处理形成新的数据。
① Getter 可以对 Store 中已有的数据加工处理后形成新的数据,类似Vue 的计算属性。
② Store 中数据发生变化,Getter 的数据也会跟着变化。

const store = new Vuex.Store({
	state:{
		count:0
	},
	getters:{
		showNum(state) {
			return '当前最新的数量是【‘+ state.count +’】'
		}
	}
})
3.5.1 使用 Getter 的第一种方式
this.$store.getters.名称

在这里插入图片描述

3.5.2 使用 Getter 的第二种方式
import { mapGetters } from 'vuex';
computed:{
	...mapGetters(['showNum'])
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小草王

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值