标签:ati 快速 多个 timeout tools creat amount 事件 java
状态管理
组件之间传值
父给子传
子给父传
子组件
<a @click="handleAdd" href="javascript:void(0)">+
// data
props: {
num: {
type: Number,
default: 1
}
}
// methods
handleAdd() {
this.count++
// 触发事件
this.$emit('change', this.count)
}
兄弟组件传值 (Event bus)
使用步骤
把 Foo.vue 中的 count 值传递给 Bar.vue
事件类似于方法,属于某个对象,要在同一个对象上触发和注册事件。所以创建一个负责通信的对象
在 Foo.vue 中触发事件
import eventHub from ‘@/eventHub‘
……
// 合适的时机,触发事件
eventHub.$emit(‘change‘, this.count)
在 Bar.vue 中注册事件
import eventHub from ‘@/eventHub‘
……
created () {
eventHub.$on(‘change‘, (c) => {
this.num = c
})
}
Vuex
Vuex 介绍
Vuex 快速体验
安装 Vuex
npm i vuex
创建仓库 Store
Vue 实例中配置 Store
// 注册 store
import store from ‘./store‘
new Vue({
// 配置 store
store,
render: h => h(App)
}).$mount('#app')
核心概念
State
Getter
Mutation
提交 mutation 的另一种方式是直接使用包含 type 属性的对象:
// 组件中的调用
store.commit({
// mutation的名字
type: ‘increment‘,
amount: 10
})
Action
Action 类似于 mutation,不同在于:
以载荷方式分发
// 以载荷形式分发
store.dispatch(‘increment‘, {
amount: 10
})
// 以对象形式分发
store.dispatch({
type: 'increment',
amount: 10
})
辅助函数
mapState
可以使用 mapState 简化生成计算属性
// 在组件中
import { mapState } from ‘vuex‘
computed: mapState({
// msg: function (state) {
// return state.msg
// }
// msg: (state) => state.msg,
// 可以重新命名
message: ‘msg‘
})
当映射的计算属性的名称与 state 的子节点名称相同时,我们也可以给 mapState 传一个字符串数组。
import { mapState } from ‘vuex‘
computed: mapState([‘msg‘])
如果组件中有自己的计算属性,这个时候 mapState 要配合对象展开运算符 — 推荐
import { mapState } from ‘vuex‘
computed: {
localComputed () { /* ... */ },
// 使用对象展开运算符将此对象混入到外部对象中
...mapState({
// ...
})
}
mapGetter
mapGetters 辅助函数仅仅是将 store 中的 getter 映射到局部计算属性:
// 在组件中
import { mapGetters } from ‘vuex‘
computed: {
// 使用对象展开运算符将 getter 混入 computed 对象中
...mapGetters([
‘reverseMsg‘,
‘anotherGetter‘,
// ...
])
}
如果你想将一个 getter 属性另取一个名字,使用对象形式:
// 在组件中
import { mapGetters } from ‘vuex‘
computed: {
// 使用对象展开运算符将 getter 混入 computed 对象中
...mapGetters({
rmsg: ‘reverseMsg‘,
anotherGetter: ‘anotherGetter‘
})
}
mapMutation
注意 mutation 映射的是方法 methods
import { mapMutations } from ‘vuex‘
export default {
// ...
methods: {
...mapMutations([
‘increment‘, // 将 this.increment()
映射为 this.$store.commit(‘increment‘)
// `mapMutations` 也支持载荷:
'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.commit('incrementBy', amount)`
]),
...mapMutations({
add: 'increment' // 将 `this.add()` 映射为 `this.$store.commit('increment')`
})
}
}
mapAction
import { mapActions } from 'vuex'
export default {
// ...
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')`
})
}
}
Module
基本演示
// store/index.js 中
const moduleA = {
state: {
acount: 1
},
mutations: {
setACount (state) {
state.acount++
}
},
actions: { ... },
getters: { ... }
}
const store = new Vuex.Store({
modules: {
a: moduleA
}
})
// 组件中使用模块A
// 访问状态
this.$store.state.a.acount // -> moduleA 的状态
// 提交 commit
this.$store.commit('setACount')
命名空间
// 创建 store/modules/moduleA.js
export default {
// 开启命名空间
namespaced: true,
state: {
acount: 10
},
mutations: {
setACount (state) {
state.acount++
}
}
}
// 组件中使用
computed: {
// 映射命名空间下的状态数据
...mapState({
acount: state => state.moduleA.acount,
bcount: state => state.moduleB.bcount,
})
// ...mapState('moduleB', ['bcount']),
// ...mapState('moduleA', ['acount'])
},
methods: {
// 调用 this['moduleB/setBCount']()
...mapMutations(['moduleB/setBCount'], ['moduleA/setACount']),
// 调用 this.setBCount()
// ...mapMutations('moduleB', ['setBCount']),
}
官方示例
https://github.com/vuejs/vuex
标签:ati 快速 多个 timeout tools creat amount 事件 java
原文地址:https://www.cnblogs.com/bgd150809324/p/11390883.html