说说如何使用Vuex进行状态管理(小结)
1 为什么需要状态管理
一个 Vue 组件分为数据(model)与视图(view)。当通过 methods 中的方法更新数据时,视图也会自动更新。
message.vue
<template> <div> {{message}} <button @click="changeMessage">改变内容</button> </div> </template> <script> export default { name: "message", data() { return { message: '你好' }; }, methods: { changeMessage() { this.message = '我很好' } } } </script>
效果
这个示例中的 message 与 changeMessage() 只能在 message.vue 组件中使用。而在实际应用中,常见的就是跨组件共享数据的要求。这时,就可以通过 Vuex 来优雅并高效地管理组件状态啦O(∩_∩)O~
注意Vuex 有一定的技术门槛,它主要应用于多人协同开发的大型单页面应用。所以,是否使用 Vuex 取决于团队规模与技术储备。
2 安装 Vuex
npm install --save vuex
安装版本vuex@3.1.0
3 基本用法
3.1 引入 Vuex
在 main.js 中引入 Vuex
... //引入 vuex 插件 import Vuex from 'vuex'; ... //加载 vuex 插件 Vue.use(Vuex); //Vuex 配置 const store = new Vuex.Store({ state: { ... }, mutations: { ... } }); ... new Vue({ el: '#app', ... //使用 Vuex store: store, ... })
Vuex 中的 store 包含应用的数据状态和操作过程。store 中的数据发生变化,使用了这些数据的组件也会立即更新。
3.2 定义数据
数据定义在 Vuex 的 states 属性中。
我们以计数器为例。定义了一个 count 数据并初始化为 0
const store = new Vuex.Store({ state: { count: 0 } });
3.3 读取数据
数据定义好之后,就可以在 vue 组件中通过 $store.state.count
读取出来啦,比如在 index.vue 中可以这样写
<template> <div> ... {{count}} ... </div> </template> <script> export default { name: "index.vue", puted: { count() { return this.$store.state.count; } }, ... } </script>
这里利用计算属性,从 Vuex 的 store 中读取了计数器的当前值。
3.4 修改数据
使用 Vuex 的 mutations 属性,可以修改 state 中定义的数据。我们为计数器定义增长与减少操作
const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment(state, n = 1) { state.count += n; }, decrease(state) { state.count--; } } });
mutations 中的函数,可以有两个入参。第一个入参是 state,第二个入参可以是任意类型。比如这里可以为新增操作,指定增长量,如果不指定,那么增长量就默认为 1。
注意如果需要传入多个参数,那么我们可以在此传入一个带多个参数的对象。
这里使用了 ES 6 为函数设置默认值的语法。 increment(state, n = 1)
等同于
increment (state, n){ n = n || 1; }
在 .vue 组件中,可以通过 this.$store.mit
方法来执行 mutations。我们在 index.vue 中,新增三个按钮,用于 “+1” 、“-1” 和 "+3" 操作
<template> <div> {{count}} <button @click="handleIncrement">+1</button> <button @click="handleDecrease">-1</button> <button @click="handleIncrementMore">+3</button> </div> </template> <script> export default { ... methods: { handleIncrement() { this.$store.mit('increment'); }, handleDecrease() { this.$store.mit('decrease'); }, handleIncrementMore() { this.$store.mit('increment', 3); } } } </script>
this.$store.mit
方法的入参,是在 mutations 中定义的函数名。
还可以通过指定 type 的方式提交, type 的值就是 mutations 中定义的函数名
main.js
const store = new Vuex.Store({ state: { count: 0 }, mutations: { ... incrementByParam(state, params) { state.count += params.count; } } });
index.vue
<template> <div> {{count}} ... <button @click="handleByParam">+30</button> </div> </template> <script> export default { ... methods: { ... handleByParam() { this.$store.mit({ type: 'incrementByParam', count: 30 }); }, } } </script>
注意如果在 mutations 中异步操作了数据,那么组件在 mit 提交之后,将无法立即改变数据。所以,在 mutations 中,建议尽量使用同步方法来操作数据。
效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南