在Vuex中Mutations修改状态操作
上篇是读取state,这篇是修改状态。即如何操作Mutations。
一. $store.mit( )
Vuex提供了mit方法来修改状态
1.store.js文件
const mutations={ add(state){ state.count++ }, reduce(state){ state.count-- } }
2.在button上的修改方法
<button @click="$store.mit('add')">+</button>
<button @click="$store.mit('reduce')">-</button>
二. 传值
最简单的修改状态的操作,在实际项目中我们常常需要在修改状态时传值。比如上边的例子,是我们每次只加1,而现在我们要通过所传的值进行相加。其实我们只需要在Mutations里再加上一个参数,并在mit的时候传递就就可以了。我们来看具体代码
1.store.js
const mutations={ add(state,n){ state.count+=n }, reduce(state){ state.count-- } }
2.修改按钮的mit( )方法传递的参数,我们传递10,意思就是每次加10.
<button @click="$store.mit('add',10)">+</button>
<button @click="$store.mit('reduce')">-</button>
三.模板获取Mutations方法
实际开发中我们也不喜欢看到$store.mit( )这样的方法出现,我们希望跟调用模板里的方法一样调用。
例如@click=”reduce” 就和没引用vuex插件一样。
1.在模板count.vue里用import 引入我们的mapMutations
import { mapState,mapMutations } from 'vuex'
2.在模板的<script>标签里添加methods属性,并加入mapMutations
methods:mapMutations([ 'add','reduce' ]),
3.在模板中直接使用我们的reduce或者add方法
<button @click="reduce">-</button>
注意封装起来$store.mit
reduce: function () { this.$store.mit('add', 10) // html标签是可以不写this }
补充知识vuex mutations参数传递
接下来做一个mutations的传参讲解
添加学生的例子
第一种传参的方式
<template> <div> <h3>-------------------这是mutations传参测试-------------------</h3> <div> {{this.$store.state.students}}//将已经有的学生渲染在这儿 <div> <button @click="addstu">点击添加</button>//绑定添加事件 </div> </div> </div> </template> <script> export default { methods: { addstu () { const newstu = { id: 5, name: '张国荣', age: 44 }//定死一个要添加的学生,这就是要传给mutations的参数 this.$store.mit('addStudent', newstu) //调用mit方法,更新state的数据, //第一个参数是mutations里面的方法名, //第二个参数是传给mutaitons里面addstudent方法的一个参数, //也就是要新加入的学生 } } } </script>
在vuex.store中接收这个参数
const store = new Vuex.Store({ // 定义的公共变量 state: { count: 1, students: [ { id: 1, name: 'dx', age: 18 }, { id: 2, name: 'yx', age: 18 }, { id: 3, name: 'ym', age: 32 }, { id: 4, name: '刘亦菲', age: 30 } ] }, // state中的变量只能在mutations中通过方法修改 mutations: { changeCount: function (state) { state.count++ console.log('改变了count') }, addStudent (state, stu) { state.students.push(stu) }//通过这种方式,接收来自组件传过来的新加入的学生 }, actions: { }, getters: { } })
第二种传参的方式
组件向vuex传参
addstu () { const newstu = { id: 5, name: '张国荣', age: 44 } this.$store.mit({ type: 'addStudent', newstu: newstu })//原先是传入两个参数,现在直接传入一个对象 //type就是需要调用的mutations里面的方法 //newstu就是要求接收的对象,也就是新加入的学生 }
vuex接收组件传参
mutations: { addStudent (state, playload) { state.students.push(playload.newstu) } },
需要注意的是,addstudent接收到的第二个参数是一个完整的对象,所以参数的使用略微有点不同
以上这篇在Vuex中Mutations修改状态操作就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程