摘要:使用在的单页面应用中使用,需要使用调用插件。使用非常简单,只需要将其注入到根实例中。想要异步地更改状态需要使用。将映射为也支持载荷将映射为将分割为模块。的基本使用大致如此。
使用
在 Vue 的单页面应用中使用,需要使用Vue.use(Vuex)调用插件。
使用非常简单,只需要将其注入到Vue根实例中。
import Vuex from "vuex"
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
count: 0
},
getter: {
doneTodos: (state, getters) => { return state.todos.filter(todo => todo.done) }
},
mutations: {
increment (state, payload) { state.count++ }
},
actions: {
addCount(context) {
// 可以包含异步操作 // context 是一个与 store 实例具有相同方法和属性的 context 对象
}
}
})
// 注入到根实例
new Vue({
el: "#app",
store,
template: "
components: { App }
})
然后改变状态:
this.$store.commit("increment")
Vuex 主要有四部分:
state:包含了store中存储的各个状态。
getter: 类似于 Vue 中的计算属性,根据其他 getter 或 state 计算返回值。
mutation: 一组方法,是改变store中状态的执行者。
action: 一组方法,其中可以含有异步操作。
state
Vuex 使用 state来存储应用中需要共享的状态。为了能让 Vue 组件在 state更改后也随着更改,需要基于state创建计算属性。
const Counter = {
template:
computed: {
count () { return this.$store.state.count // count 为某个状态 }
}
}
getters
类似于 Vue 中的 计算属性,可以在所以来的其他 state或者 getter改变后自动改变。
每个getter方法接受 state和其他getters作为前两个参数。
getters: {
doneTodos: (state, getters) => { return state.todos.filter(todo => todo.done) }
}
mutations
前面两个都是状态值本身,mutations才是改变状态的执行者。mutations用于同步地更改状态
// ...
mutations: {
increment (state, n) {
state.count += n
}
}
其中,第一个参数是state,后面的其他参数是发起mutation时传入的参数。
this.$store.commit("increment", 10)
commit方法的第一个参数是要发起的mutation名称,后面的参数均当做额外数据传入mutation定义的方法中。
规范的发起mutation的方式如下:
store.commit({
type: "increment",
amount: 10 //这是额外的参数
})
额外的参数会封装进一个对象,作为第二个参数传入mutation定义的方法中。
mutations: {
increment (state, payload) {
state.count += payload.amount
}
}
actions
想要异步地更改状态,需要使用action。action并不直接改变state,而是发起mutation。
actions: {
incrementAsync ({ commit }) {
setTimeout(() => { commit("increment") }, 1000)
}
}
发起action的方法形式和发起mutation一样,只是换了个名字dispatch。
// 以对象形式分发
store.dispatch({
type: "incrementAsync",
amount: 10
})
action处理异步的正确使用方式
想要使用action处理异步工作很简单,只需要将异步操作放到action中执行(如上面代码中的setTimeout)。
要想在异步操作完成后继续进行相应的流程操作,有两种方式:
action返回一个 promise。
而dispatch方法的本质也就是返回相应的action的执行结果。所以dispatch也返回一个promise。
store.dispatch("actionA").then(() => {
// ...
})
利用async/await。代码更加简洁。
// 假设 getData() 和 getOtherData() 返回的是 Promise
actions: {
async actionA ({ commit }) {
commit("gotData", await getData())
},
async actionB ({ dispatch, commit }) {
await dispatch("actionA") // 等待 actionA 完成 commit("gotOtherData", await getOtherData())
}
}
各个功能与 Vue 组件结合
将state和getter结合进组件需要使用计算属性:
computed: {
count () { return this.$store.state.count // 或者 return this.$store.getter.count2 }
}
将mutation和action结合进组件需要在methods中调用this.$store.commit()或者this.$store.commit():
methods: {
changeDate () { this.$store.commit("change"); }, changeDateAsync () { this.$store.commit("changeAsync"); }
}
为了简便起见,Vuex 提供了四个方法用来方便的将这些功能结合进组件。
mapState
mapGetters
mapMutations
mapActions
示例代码:
import { mapState, mapGetters, mapMutations, mapActions } from "vuex"
// ....
computed: {
localComputed () { / ... / },
...mapState({
// 为了能够使用 `this` 获取局部状态,必须使用常规函数 count(state) { return state.count + this.localCount }
}),
...mapGetters({
getterCount(state, getters) { return state.count + this.localCount }
})
}
methods: {
...mapMutations({
add: "increment" // 将 `this.add()` 映射为`this.$store.commit("increment")` }),
...mapActions({
add: "increment" // 将 `this.add()` 映射为 `this.$store.dispatch("increment")` })
}
如果结合进组件之后不想改变名字,可以直接使用数组的方式。
methods: {
...mapActions([ "increment", // 将 `this.increment()` 映射为 `this.$store.dispatch("increment")` // `mapActions` 也支持载荷: "incrementBy" // 将 `this.incrementBy(amount)` 映射为 `this.$store.dispatch("incrementBy", amount)` ]),
}
将 store分割为模块。
可以将应用的store分割为小模块,每个模块也都拥有所有的东西:state, getters, mutations, actions。
首先创建子模块的文件:
// initial state
const state = {
added: [],
checkoutStatus: null
}
// getters
const getters = {
checkoutStatus: state => state.checkoutStatus
}
// actions
const actions = {
checkout ({ commit, state }, products) {
}
}
// mutations
const mutations = {
mutation1 (state, { id }) {
}
}
export default {
state,
getters,
actions,
mutations
}
然后在总模块中引入:
import Vuex from "vuex"
import products from "./modules/products" //引入子模块
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
products // 添加进模块中
}
})
其实还存在命名空间的概念,大型应用会使用。需要时查看文档即可。Vuex的基本使用大致如此。
作者:胡不归vac
链接:https://www.jianshu.com/p/aae...
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/104161.html
摘要:简单点说,当你使用构造函数,它实际上做了这么几件事,首先定义给实例定义一些内部属性,之后就是绑定和的上下文对象永远是实例上,之后根据传入的充实内部状态等等。函数执行的结果是返回一个对象,属性名对应于传入的对象或者数组元素。 转载请注明出处 https://segmentfault.com/a/11... vuex2.0 和 vuex1.x 相比,API改变的还是很多的,但基本思想没什么...
摘要:中文官网英文官网组织发出一个问题之后,不要暂时的离开电脑,如果没有把握先不要提问。珍惜每一次提问,感恩每一次反馈,每个人工作还是业余之外抽出的时间有限,充分准备好应有的资源之后再发问,有利于问题能够高效质量地得到解决。 Vue.js资源分享 更多资源请Star:https://github.com/maidishike... 文章转自:https://github.com/maid...
摘要:可以译作运行时过程全面分析和解析,这个全面分析涉及到比较基础的或者复杂的重要前端概念和中的概念等。注本篇是运行时全解析系列文章的第一篇,首次发表于,友善转载蟹蟹。附更多内容请参考核心维护者蒋豪群同学的的公开课视频 Vue Runtime Full Analysis - VueCLI3 Get Start VRFA: (Vue Runtime Full Analysis) 可以译作vue...
摘要:起初,项目使用的是,其提供的方法用着比较爽,由于项目的很多数据来自豆瓣的,直接上简单方便,跨域什么的不考虑。跨域问题,上面已经介绍,在不能操控的豆瓣数据上,使用的是。 项目地址 在线演示 不识庐山真面目,只缘身在此山中。 大概一个月前,开源了Vue重构豆瓣移动端的项目,效果还可以,收到了很多小伙伴的反馈,话说是要写一些文章的,但迟迟没有动笔,估计小伙伴们等的花都谢了,拖延症是病,需要治...
摘要:说起,其实早在出现之前,网页就是在服务端渲染的。没有涉及流式渲染组件缓存对的服务端渲染有更深一步的认识,实际在生产环境中的应用可能还需要考虑很多因素。选择的服务端渲染方案,是情理之中的选择,不是对新技术的盲目追捧,而是一切为了需要。 作者:威威(沪江前端开发工程师)本文原创,转载请注明作者及出处。 背景 最近, 产品同学一如往常笑嘻嘻的递来需求文档, 纵使内心万般拒绝, 身体倒是很诚实...
阅读 3379·2023-04-26 02:41
阅读 2414·2023-04-26 00:14
阅读 2748·2021-08-11 10:22
阅读 1251·2019-12-27 11:38
阅读 3539·2019-08-29 18:34
阅读 2325·2019-08-29 12:13
阅读 2914·2019-08-26 18:26
阅读 1791·2019-08-26 16:49