英雄介绍
维佑·爱克斯是鲁班大师创造出来的三代机器人,目前负责稷下学院负责学院物资分配工作,他采用集中式存储管理着学院的所有的物资,并以相应的规则保证物资以一种可预测的方式发生变化。
姓名:维佑·爱克斯(vuex)
热度排名:T0
胜率:95%
登场率:90%(中大型项目100%)
Ban率:0%
技能:
State(单一状态树)

Getter(计算属性)

Mutation(出尔反尔)

Action(异步操作)

Module(多重影分身)

爱克斯通过modules,可以将store分割成模块。每个模块拥有自己的state等属性;
出装:
mapState:

count: state => state.count
* countAlias传递字符串参数
countAlias: 'count'
* 传入数组
computed: mapState([ // 映射 this.count 为 store.state.count 'count' ])
mapMutation:

methods:{
...mapMutations([
'increment', // 将 `this.increment()` 映射为 `this.$store.commit('increment')`
]),
}
mapActions:

methods: {
...mapActions([
'increment', // 将 `this.increment()` 映射为 `this.$store.dispatch('increment')`
// `mapActions` 也支持载荷:
'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.dispatch('incrementBy', amount)`
]),
...mapActions({
add: 'increment' // 将 `this.add()` 映射为 `this.$store.dispatch('increment')`
})
}
dispatch:

store.dispatch('increment')
commit:

store.commit('increment')
爱克斯的个人原则:
-
应用层级的状态应该集中到单个 store 对象中。
-
提交 mutation 是更改状态的唯一方法,并且这个过程是同步的。
-
异步逻辑都应该封装到 action 里面。
爱克斯如何处理表单:
- 绑定value,然后监听输入,监听事件内调用commit方法触发mutation更改对应state
<!--view-->
<input :value="message" @input="updateMessage">
<!--methods-->
methods: {
updateMessage (e) {
this.$store.commit('updateMessage', e.target.value)
}
}
- 使用computed计算属性 的get和set方法做对应处理
<input v-model="message">
computed: {
message: {
get () {
return this.$store.state.obj.message
},
set (value) {
this.$store.commit('updateMessage', value)
}
}
}
本期英雄介绍完毕,祝大家早日国服王者,我们下期见。