赞
踩
VueX
是适用于在Vue
项目开发时使用的状态管理工具。Vue
为这些被多个组件频繁使用的值提供了一个统一管理的工具——VueX
。在具有VueX
的Vue
项目中,我们只需要把这些值定义在VueX
中,即可在整个Vue
项目的组件中使用。
npm安装
npm i vuex -s
在项目的根目录下新增一个store文件夹,在该文件夹内创建index.js
此时项目的src
文件夹是这样的
│ App.vue
│ main.js
│
├─assets
│ logo.png
│
├─components
│ HelloWorld.vue
│
├─router
│ index.js
│
└─store
index.js
在store.js文件中,引入vuex并且使用vuex,这里注意变量名是大写Vue和Vuex
//store.js
import Vue from 'vue'
import Vuex from 'vuex'
//挂载Vuex
Vue.use(Vuex)
//创建VueX对象
const store = new Vuex.Store({
state:{
//存放的键值对就是所要管理的状态
name:'helloVueX'
}
})
export default store
将store挂载到当前项目的Vue实例当中去
//main.js
import store from './store'
new Vue({
el: '#app',
router,
store, // 和router一样,将我们创建的Vuex实例挂载到这个vue实例中
render: h => h(App)
})
在组件中使用Vuex
例如在App.vue
中,我们要将state
中定义的name
拿来在h1标签
中显示
<template>
<div id='app'>
name:
<h1>{{ $store.state.name }}</h1>
</div>
</template>
或者要在组件方法中使用
methods:{
add(){
console.log(this.$store.state.name)
}
},
具体的使用方法下面会详细介绍
注意:vuex
的出现是为了解决组件间的通信问题,如果某个操作或者数据不涉及到公共操作,只是单一组件操作,不要把这些状态值或者function
存储到vuex
中,因为vuex
会把自身挂载到所有组件上,不管当前组件是否用到里面的东西,因此这事实上肯定增加了性能的损耗的.
vuex
中,有默认的五种基本的对象:
state
的计算属性。store
的子模块如果项目中的状态和方法过多,index.js
文件看起来就会很臃肿并且不好维护,这个时候我们就可以把state
,getters
,mutations
,actions
拆分成单个文件,有利于进行管理
此时目录结构是这样的
store │ │ ├─index.js │ │ ├─state.js │ │ ├─getters.js │ │ ├─mutations.js │ │ └─actions.js
index.js
import Vue from 'vue';
import Vuex from 'vuex';
import state from './state';
import getters from './getters';
import mutations from './mutations';
import actions from './actions';
Vue.use(Vuex);
export default new Vuex.Store({
state,
mutations,
actions,
getters,
});
其他的文件中只需要export
导出即可
state.js
export default {
name:'hzw'
};
mutations.js
export default {
changeName(state, name) {
state.name = name;
},
};
getters.js
export default {
realName(state) {
return "姓名:" + state.name
},
};
actions.js
export default {
changeName({ commit }, name) {
return commit('changeName', name)
}
};
这样看起来就更有结构感,也更易于维护了
state(vuex) ≈ data (vue)
vuex
的state
和vue
的data
有很多相似之处,都是用于存储一些数据,或者说状态值.这些值都将被挂载数据和dom
的双向绑定事件,也就是当值改变的时候可以触发dom
的更新.
我们在state.js
中声明一个状态count
,初始值为0
,然后在组件中输出它
// state.js
export default {
count:'0'
};
//组件中
<template>
<div class="hello">
<h3>{{$store.state.count}}</h3>
</div>
</template>
结果如下图所示
注意:虽然state
和data
有很多相似之处,但state
在使用的时候一般被挂载到子组件的computed
计算属性上,这样有利于state
的值发生改变的时候及时响应给子组件.如果用data
去接收$store.state
,也是可以接收到值的,但是由于这只是一个简单的赋值操作,所以state
中的状态改变的时候不能被vue
中的data
监听到.也可以通过watch $store
去解决这个问题,但是稍微有点麻烦.
所以,最好还是用computed
去接收state
,如下,修改state
的方法后面会学习,这里先进行展示.
//mutations.js
export default {
add(state, n = 0) {
return (state.count += n)
},
reduce(state, n = 0) {
return (state.count -= n)
}
}
//组件中 <template> <div class="hello"> <h3>{{$store.state.count}}</h3> <div> <button @click="add(10)">增加</button> <button @click="reduce(10)">减少</button> <div>computed:{{dataCount}}</div> <div>data: {{count}}</div> </div> </div> </template> <script> export default { name: 'HelloWorld', data () { return { dataCount: this.$store.state.count //用data接收 } }, computed:{ count(){ return this.$store.state.count //用computed接收 } }, methods: { add(n){ this.$store.commit('add',n); }, reduce(n){ this.$store.commit('reduce',n); } } } </script>
然后我们点击增加按钮,看看会发生什么变化,结果如下
可以看到,用data接收的值不能及时响应更新,用computed就可以.
知识点:Props
,methods
,data
和computed
的初始化都是在beforeCreated
和created
之间完成的。
表面意思:mapState
是state
的辅助函数
实际作用:当一个组件需要获取多个状态时候,将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题,可以使用 mapState
辅助函数帮助生成计算属性
使用方法:先要导入这个辅助函数.
import { mapState } from 'vuex'
然后就可以在computed
中使用mapState
了
用mapState
等这种辅助函数的时候,如果组件内部的命名和vuex内的命名是一致的,可以简写成数组方式。
//state.js
export default {
nickname:'Simba',
age:20,
gender:'男'
};
//computed
computed: mapState(['nickname','age','gender'])
//上面的一句代码就相当于下面这些 是不是简洁了很多
computed:{
nickname(){return this.$store.state.nickname}
age(){return this.$store.state.age}
gender(){return this.$store.state.gender}
}
如果需要自定义一个计算属性,需要es6
中的展开运算符:…
data(){
return{
count:14
}
}
computed: {
value(){
return "姓名:" + this.coount/7
},
...mapState(['nickname','age','gender'])
}
getters:对数据获取之前的再次编译,getters
的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算。说白了就约等于vue
的computed
,可以像使用computed
一样去使用getters
,当然二者还是有区别的.
getters
中的方法有两个默认参数
VueX
对象中的状态对象getters
对象,用于将getters
下的其他getter
拿来用//state.js export default { name:'simba', age:'20' }; //getters.js export default { // 第一个参数是state realName(state) { return "姓名:" + state.name }, // 第二个参数可以访问getters nameAndAge(state, getters) { return "年龄:" + state.age +";"+ getters.realName } };
getter
会暴露为store.getters
对象,我们可以以属性的形式访问这些值:
store.getters.realName// -> 姓名:simba
注意:getter
在通过属性访问时是作为 Vue
的响应式系统的一部分缓存其中的。
我们可以通过让 getters
返回一个函数,来实现给 getters
传参。这样在对 store
里的数组进行查询时非常有用。
state:{
todos:[
{
id:2,
text:'…',
done: false
}
]
},
getters: {
getTodoById: (state) => (id) => {
return state.todos.find(todo => todo.id === id)
}
}
store.getters.getTodoById(2) // -> { id: 2, text: ‘…’, done: false }
注意:getter
在通过方法访问时,每次都会去进行调用,而不会缓存结果。
我们在computed
中通过this.$store.getters.xxx
来绑定一个计算属性
//组件中 <template> <div class="hello"> <div> <div>{{message}}</div> <div>{{message2}}</div> </div> </div> </template> computed:{ message(){ return this.$store.getters.realName }, message2(){ return this.$store.getters.nameAndAge; } },
结果如下:
mapGetters
辅助函数仅仅是将 store
中的 getter
映射到局部计算属性:
使用方法:先要导入这个辅助函数.
import { mapGetters } from 'vuex'
然后就可以在computed
中使用mapGetters
了
computed: {
...mapGetters({
message: "realName",
message2: "nameAndAge"
})
},
是不是简洁了很多,如果计算属性的名和getters的名字相同,还可以使用数组简写形式
computed: {
...mapGetters(["realName","nameAndAge"])
},
mutation
是操作state
数据的方法的集合,比如对该数据的修改、增加、删除等等。mutation
中通常存放一些同步修改状态的方法.
注意:更改 Vuex 的 store 中的状态的唯一方法是提交 mutation。
mutations
方法都有默认的形参:mutation([state] [,payload])
VueX
对象中的state
//state.js
export default {
name:'韩志伟'
};
//mutations.js
export default {
changeName(state, name) {
state.name = name;
},
};
我们需要这样去调用mutation
this.$store.commit('changeName','吴彦祖')
例如我们在组件的methods
中修改一下name
属性
methods: {
changeName(name){
this.$store.commit('changeName',name);
},
}
//调用changeName方法
mounted(){
this.changeName('吴彦祖')
}
当需要多参提交时,可以把他们放在一个对象中
this.$store.commit('changeName',{firstName:'han',lastName:'zhiwei'})
也可以用另外一种传参的方式
this.$store.commit({
type:'changeName',
payload:{
firstName:'han',
lastName:'zhiwei'
}
})
mapMutation
辅助函数仅仅是将 store
中的 mutation
映射到组件methods
中
使用方法:先要导入这个辅助函数.
import { mapMutation} from 'vuex'
然后就可以在methods
中使用mapMutation
了
methods:{
...mapMutations({
changeName:'changeName',
})
}
这个代码等同于下面这段
changeName(payLoad){
this.$store.commit('changeName',payLoad)
}
如果方法名和mutation名字一样 可以简写成下面这样
methods:{
...mapMutations(['changeName'])
}
还可以使用常量替代mutations
事件类型
在store
文件夹下面新建mutation-types.js
文件
//mutation-types.js
export const ADD_AGE = 'ADD_AGE'
//mutations.js
import * as types from './mutation-types';
export default {
[types.ADD_AGE](state, payLoad) {
state.age += payLoad.number
}
}
//组件中js部分
...mapMutations([types.ADD_AGE]),
但是这个不是很常用,知道有这个知识点就可以了
既然讲到了如何修改state
的值,顺便提一下如何增删state
中的成员
Vue.set 为某个对象设置成员的值,若不存在则新增
Vue.set(state,"age",22)
Vue.delete 删除成员
Vue.delete(state,'age')
由于直接在mutation
方法中进行异步操作,可能会引起数据失效。所以提供了Actions
来专门进行异步操作,类似于axios请求,最终通过提交mutation
方法来修改state
中的值。
Actions
中的方法有两个默认参数: Action([context ] [,payload])
dispatch
commit
state
getters
rootState
可以使用es6
的解构赋值看起来更明确{ commit }
mutation
修改state
中的name
属性//state.js export default { name:'韩志伟' }; //mutations.js export default { changeName(state, name) { state.name = name; }, }; //actions.js export default { asyncChangeName({ commit } ,name) { setTimeout(() => { commit('changeName',name); }, 1000); }, };
我们需要这样去调用action
this.$store.dispatch('asyncChangeName','吴彦祖')
例如我们在组件的methods
中修改一下name
属性
methods: {
changeName(name){
this.$store.dispatch('asyncChangeName',name);
},
}
//调用changeName方法
mounted(){
this.changeName('吴彦祖')
}
action
中也可以调用另一个action
//actions.js
export default {
asyncChangeName({ dispatch }) {
setTimeout(() => {
dispatch('anotherAction');
}, 1000);
},
anotherAction(){
console.log('另一个action被调用了')
}
};
action
中也可以传入state
,以及rootState
,至于什么是rootState
,下面学习模块化modules
的时候就知道了
//actions.js
export default {
action({ state }) {
setTimeout(() => {
console.log(state.name)
}, 1000);
},
anotherAction({ rootState }){
setTimeout(() => {
console.log(rootState.name);
}, 1000);
}
};
至于actions
的传参就与mutation
一样了
this.$store.dispatch('changeName',{firstName:'han',lastName:'zhiwei'})
mapActions
辅助函数仅仅是将 store
中的 actions
映射到组件methods
中
使用方法:先要导入这个辅助函数.
import { mapActions} from 'vuex'
然后就可以在methods
中使用mapActions
了
methods:{
...mapActions({
changeName:'changeName',
})
}
这个代码等同于下面这段
changeName(payLoad){
this.$store.dispatch('changeName',payLoad)
}
如果方法名和actions名字一样 可以简写成下面这样
methods:{
...mapActions(['changeName'])
}
当项目庞大,状态非常多时,可以采用模块化管理模式。Vuex
允许我们将 store
分割成模块(module)
。每个模块拥有自己的 state
、mutation
、action
、getter
。
前面我们学习了如何将vuex
的index.js
文件拆分成单个文件进行管理,所以我们依然对所有的模块进行单文件拆分管理,目录结构如下
store │ ├─index.js │ ├─state.js │ ├─getters.js │ ├─mutations.js │ ├─actions.js │ └─modules │ ├─moduleA // moduleA的结构与moduleB相同 │ └─moduleB │ ├─index.js │ ├─state.js │ ├─getters.js │ ├─mutations.js │ └─actions.js
1.首先根index.js中除了引入自身的state,getters,mutations,actions之外,还要引入两个模块的index.js并在export中导出modules
import Vue from 'vue'; import Vuex from 'vuex'; import state from './state'; import getters from './getters'; import mutations from './mutations'; import actions from './actions'; import moduleA from './modules/moduleA/index'; import moduleB from './modules/moduleB/index'; Vue.use(Vuex); export default new Vuex.Store({ state, mutations, actions, getters, modules: { moduleA, moduleB, }, });
2.在 moduleA 的index.js中导入moduleA的state,getters,mutations,actions. moduleB同理
注意:getter
,mutation
,action
他们默认都是注册在全局命名空间的,所以我们默认是可以和使用根状态一样去使用他们,这样就失去了模块化的意义,所以我们要在模块的index.js
中添加namespaced: true
使其成为带命名空间的模块。当模块被注册后,它的所有 getter
、action
及 mutation
都会自动根据模块注册的路径调整命名。
import state from './state';
import getters from './getters';
import mutations from './mutations';
import actions from './actions';
const moduleA = {
namespaced: true,
state: state,
getters: getters,
mutations: mutations,
actions: actions,
};
export default moduleA ;
3.moduleA下的state,getters,mutations,actions就和之前学习的一样导出就可以了
//state.js
export default {
name:'hzw'
};
//mutations.js
export default {
changeName(state, name) {
state.name = name;
},
};
//以此类推
state
正常写在各自的state.js
中即可
getter
getter
的话,他会有三个参数,第一个是模块内的 state
,第二个是 模块内的 getters
,第三个是根节点状态 rootState
//getters.js
export default {
nameAndAge(state, getters, rootState) {
return "年龄:" + state.age +";"+ getters.realName + "" + rootState.name
}
};
mutation
mutation
传入的第一个参数也是模块内的 state
,其实就和根状态定义 mutation
的时候一样
export default {
//这里的state是模块的局部状态
changeName(state, name) {
state.name = name;
},
};
actions
action
的话,他传入还是只有 context
对象,这个对象里面的 state
属性指模块内的状态,rootState
指根状态,如下
export default {
changeName({ state,rootState }) {
console.log(state.name)
console.log(rootState .name)
}
};
这个要在原来状态名前面加一个模块名才能取到到模块内的对象。
this.$store.state.moduleA.name;
辅助函数也一样,name
前面加个模块名
...mapState({
name: state => state.moduleA.name,
})
//简写
...mapState('moduleA',['name']),
获取根节点的状态还是和以前一样,不需要加模块名
,也不需要加root
...mapState(['name']),
这个同样要在原来状态名前面加一个模块名才能取到到模块内的对象。
在获取根状态下的getters
不需要加模块名
store.getters.moduleA.realName
//map函数的第一个参数也同样需要加模块名
computed: {
//获取moduleA下的getters
...mapGetters("moduleA",["realName","nameAndAge"])
//获取根状态下的getters
...mapGetters(["realName"])
},
根据state
和getters
推算,在调用模块内mutation
和action
的时候肯定也需要加模块名
在调用根状态中的mutation
和action
的时候不需要加模块名
methods:{
//调用模块A下的action
...mapActions('moduleA',['changeName'])
//调用模块A下的mutation
...mapMutation('moduleB',['changeName'])
//调用根状态下的action
...mapActions(['changeName'])
//调用根状态下的mutation
...mapMutation(['changeName'])
}
//moduleA下的actions.js
export default {
AsyncChangeName({ commit } ,name) {
setTimeout(() => {
//调用的是根状态下的mutation
commit('changeName',name,{ root: true });
//调用的是根状态下的action
dispatch('changeName',name,{ root: true });
}, 1000);
},
};
这个感觉和模块化的设计有点冲突,并且也不常用,知道有这个知识点即可,在声明action
的时候,添加root:true
并将 action
的定义放到 hanler
函数中,具体如下:
//actions.js
export default {
globalAction:{
root:true,
handler({ commit } ,name) {
setTimeout(() => {
commit('changeName',name);
}, 1000);
},
}
};
到这里就完全可以使用vuex
进行开发任务了!
这是我一个开源的收藏网址的项目
项目地址
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。