共计 3540 个字符,预计需要花费 9 分钟才能阅读完成。
一文让你看懂什么是 vuex
为什么会有 Vuex ?
Vuex 是一个专为 Vue.js 利用程序开发的 状态管理模式 。它采纳 集中式
存储管理利用的所有组件的状态,并以相应的规定保障状态以一种 可预测
的形式发生变化。
- vuex 是采纳集中式治理组件依赖的共享数据的一个工具,能够解决不同组件数据共享问题。
论断
- 批改 state 状态必须通过
mutations
mutations
只能执行同步代码,相似 ajax,定时器之类的代码不能在 mutations 中执行- 执行异步代码,要通过 actions,而后将数据提交给 mutations 才能够实现
- state 的状态即共享数据能够在组件中援用
- 组件中能够调用 action
vuex 根底 - 初始化性能
建设一个新的脚手架我的项目, 在我的项目中利用 vuex
$ vue create demo
开始 vuex 的初始化建设,抉择模式时,抉择默认模式
初始化:
- 第一步:
npm i vuex --save
=> 装置到运行时依赖
=> 我的项目上线之后仍然应用的依赖 , 开发时依赖 => 开发调试时应用
开发时依赖 就是开开发的时候,须要的依赖,运行时依赖,我的项目上线运行时仍然须要的
- 第二步:在 main.js 中
import Vuex from 'vuex'
- 第三步:在 main.js 中
Vue.use(Vuex)
=> 调用了 vuex 中的 一个 install 办法 - 第四步:
const store = new Vuex.Store({... 配置项})
- 第五步:在根实例配置 store 选项指向 store 实例对象
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(vuex)
const store = new Vuex.Store({})
new Vue({
el: '#app',
store
})
vuex 根底 -state
state 是搁置所有公共状态的属性,如果你有一个公共状态数据,你只须要定义在 state 对象中
定义 state
// 初始化 vuex 对象
const store = new Vuex.Store({
state: {
// 治理数据
count: 0
}
})
如何在组件中获取 count?
原始模式– 插值表达式
App.vue
组件中能够应用 this.$store 获取到 vuex 中的 store 对象实例,可通过 state 属性属性获取count,如下
<div> state 的数据:{{$store.state.count}}</div>
计算属性 – 将 state 属性定义在计算属性中
// 把 state 中数据,定义在组件内的计算属性中
computed: {count () {return this.$store.state.count}
}
<div> state 的数据:{{count}}</div>
辅助函数 – mapState
mapState 是辅助函数,帮忙咱们把 store 中的数据映射到 组件的计算属性中, 它属于一种不便用法
用法:第一步:导入 mapState
import {mapState} from 'vuex'
第二步:采纳数组模式引入 state 属性
mapState(['count'])
下面代码的最终失去的是 相似
count () {return this.$store.state.count}
第三步:利用 延展运算符 将导出的状态映射给计算属性
computed: {...mapState(['count'])
}
<div> state 的数据:{{count}}</div>
vuex 根底 -mutations
state 数据的批改只能通过 mutations,并且 mutations 必须是同步更新,目标是造成
数据快照
数据快照:一次 mutation 的执行,立即 失去一种视图状态,因为是立即,所以必须是同步
定义 mutations
const store = new Vuex.Store({
state: {count: 0},
// 定义 mutations
mutations: {}})
格局阐明
mutations 是一个对象,对象中寄存批改 state 的办法
mutations: {
// 办法里参数 第一个参数是以后 store 的 state 属性
// payload 载荷 运输参数 调用 mutaiions 的时候 能够传递参数 传递载荷
addCount (state) {state.count += 1}
},
如何在组件中调用 mutations
原始模式-$store
新建组件 child-a.vue,内容为一个 button 按钮,点击按钮调用 mutations
<template>
<button @click="addCount">+1</button>
</template>
<script>
export default {
methods: {
// 调用办法
addCount () {
// 调用 store 中的 mutations 提交给 muations
// commit('muations 名称', 2)
this.$store.commit('addCount', 10) // 间接调用 mutations
}
}
}
</script>
带参数的传递
addCount (state, payload) {state.count += payload}
this.$store.commit('addCount', 10)
辅助函数 – mapMutations
mapMutations 和 mapState 很像,它把位于 mutations 中的办法提取了进去,咱们能够将它导入
import {mapMutations} from 'vuex'
methods: {...mapMutations(['addCount'])
}
下面代码的含意是将 mutations 的办法导入了 methods 中,等同于
methods: {// commit(办法名, 载荷参数)
addCount () {this.$store.commit('addCount')
}
}
此时,就能够间接通过 this.addCount 调用了
<button @click="addCount(100)">+100</button>
然而请留神:Vuex 中 mutations 中要求不能写异步代码,如果有异步的 ajax 申请,应该搁置在 actions 中
vuex 根底 -actions
state 是存放数据的,mutations 是同步更新数据,actions 则负责进行异步操作
定义 actions
actions: {
// 获取异步的数据 context 示意以后的 store 的实例 能够通过 context.state 获取状态 也能够通过 context.commit 来提交 mutations,也能够 context.diapatch 调用其余的 action
getAsyncCount (context) {setTimeout(function(){
// 一秒钟之后 要给一个数 去批改 state
context.commit('addCount', 123)
}, 1000)
}
}
原始调用 – $store
addAsyncCount () {this.$store.dispatch('getAsyncCount')
}
传参调用
addAsyncCount () {this.$store.dispatch('getAsyncCount', 123)
}
辅助函数 -mapActions
actions 也有辅助函数,能够将 action 导入到组件中
import {mapActions} from 'vuex'
methods: {...mapActions(['getAsyncCount'])
}
间接通过 this. 办法就能够调用
<button @click="getAsyncCount(111)">+ 异步 </button>
vuex 根底 -getters
除了 state 之外,有时咱们还须要从 state 中派生出一些状态,这些状态是依赖 state 的,此时会用到 getters
例如,state 中定义了 list,为 1 -10 的数组,
state: {list: [1,2,3,4,5,6,7,8,9,10]
}
组件中,须要显示所有大于 5 的数据,失常的形式,是须要 list 在组件中进行再一步的解决,然而 getters 能够帮忙咱们实现它
定义 getters
getters: {
// getters 函数的第一个参数是 state
// 必须要有返回值
filterList: state => state.list.filter(item => item > 5)
}
应用 getters
原始形式 -$store
<div>{{$store.getters.filterList}}</div>
辅助函数 – mapGetters
computed: {...mapGetters(['filterList'])
}
<div>{{filterList}}</div>
小结:
若有不懂的中央,请加 q 群 147936127 交换或者 vx: ltby52119,谢谢~