一、目标
1、了解vuex中的各个js文件的用途
2、利用vuex存值
3、利用vuex取值
4、Vuex的异步加载问题
二、vuex中的各个js文件的用途
变量传值的演变形式
图解Vuex各组件
官方图解Vuex
1. vue中各个组件之间传值
1.父子组件
父组件–>子组件,通过子组件的自定义属性:props
子组件–>父组件,通过自定义事件:this.$emit(‘事件名’,参数1,参数2,…);
2.非父子组件或父子组件
通过数据总数Bus,this.root.root.root.emit(‘事件名’,参数1,参数2,…)
3.非父子组件或父子组件
更好的方式是在vue中使用vuex
方法1: 用组件之间通讯。这样写很麻烦,并且写着写着,估计自己都不知道这是啥了,很容易写晕。
方法2: 我们定义全局变量。模块a的数据赋值给全局变量x。然后模块b获取x。这样我们就很容易获取到数据
2. Vuex
官方解释:Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。可以想象为一个“前端数据库”(数据仓库),
让其在各个页面上实现数据的共享包括状态,并且可操作
Vuex分成五个部分:
1.State:单一状态树
2.Getters:状态获取
3.Mutations:触发同步事件
4.Actions:提交mutation,可以包含异步操作
5.Module:将vuex进行分模块
- vuex使用步骤
3.1 安装
npm install vuex -S
3.2 创建store模块,分别维护
state/actions/mutations/getters
store
index.js
state.js
actions.js
mutations.js
getters.js
3.3 在store/index.js文件中新建vuex的store实例,并注册上面引入的各大模块
const store = new Vuex.Store({state,getters,actions,mutations})
index.js:
import Vue from 'vue'
import Vuex from 'vuex'
import state from './state'
import getters from './getters'
import actions from './actions'
import mutations from './mutations'
Vue.use(Vuex)
const store = new Vuex.Store({
state,
getters,
actions,
mutations
})
export default store
3.4 在main.js中导入并使用store实例
new Vue({
el: '#app',
router,
store, //在main.js中导入store实例
components: {
App
},
template: '<App/>',
data: {
//自定义的事件总线对象,用于父子组件的通信
Bus: new Vue()
}
})
3.5 之后按要求编码,即可使用vuex的相关功能
4. vuex的核心概念:store、state、getters、mutations、actions
4.0 store
每一个Vuex应用的核心就是store(仓库),store基本上就是一个容器,它包含着你的应用中大部分的状态 (state)。
const store = new Vuex.Store({
state, // 共同维护的一个状态,state里面可以是很多个全局状态
getters, // 获取数据并渲染
actions, // 数据的异步操作
mutations // 处理数据的唯一途径,state的改变或赋值只能在这里
})
4.1 state(保存数据的容器)
状态,即要全局读写的数据
const state = {
resturantName:'飞歌餐馆'
};
computed:{
msg(){
// 不推荐,vuex遵循了编码解耦的原则,个模块各司其职
return this.$store.state.resturantName;
}
},
4.2 getters(getXxx)
获取数据并渲染,
const getters = {
resturantName: (state) => {
return state.resturantName;
}
};
注1:getters将state中定义的值暴露在this.$store.getters对象中,我们可以通过如下代码访问
this.$store.getters.resturantName
注2:state状态存储是响应式的,从store实例中读取状态最简单的方法就是在计算属性中返回某个状态,如下:
computed: {
resturantName: function() {
return this.$store.getters.resturantName;
}
}
注1:mutations中方法的调用方式
不能直接调用this.$store.mutations.setResturantName(‘KFC’),必须使用如下方式调用:
this.$store.commit(type,payload);
// 1、把载荷和type分开提交
store.commit('setResturantName',{
resturantName:'KFC'
})
// 2、载荷和type写到一起
store.commit({
type: 'setResturantName',
resturantName: 'KFC'
})
一定要记住,Mutation 必须是同步函数。
mutations: {
someMutation (state) {
api.callAsyncMethod(() => {
state.count++
})
}
}
4.4 actions
数据的异步(async)操作
如何理解javascript中的异步和同步?附录四:同步和异步的示例代码
三、vuex取值
1、state.js:
export default {
resturantName:'飞歌餐馆'
}
2、getters.js:
export default {
getResturantName: (state) => {
return state.resturantName;
}
}
getters将state中定义的值暴露在this.$store.getters对象中,我们可以通过如下代码访问
this.$store.getters.resturantName
注1:state状态存储是响应式的,从store实例中读取状态最简单的方法就是在计算属性中返回某个状态,如下:
computed: {
resturantName: function() {
return this.$store.getters.resturantName;
}
}
四、vuex存值
Mutations.Js
export default {
setResturantName:(state,payload) =>{
state.resturantName = payload.resturantName
}
}
Actions.js:
export default {
setResturantNameAsync: (context, payload) => {
console.log('xxxx');
setTimeout(()=>{
console.log('yyyy');
context.commit('setResturantName',{
resturantName:payload.resturantName
})
},6000);
console.log('zzzz');
},
doAjax:(context,payload)=>{
let _this =payload._this;
let url = _this.axios.urls.SYSTEM_MENU_TREE;
_this.axios.post(url,{}).then((response) => {
console.log(response);
}).catch(function(error) {
console.log(error);
});
}
}
VuexPage1.vue:
<template>
<div>
<ul>
<li>这是第一张页面:{{msg}}</li>
<li>
<input v-model="newName" />
<button @click="buy">盘它</button>
<button @click="badBuy">使阴招</button>
<button @click="doAjax">调用Ajax</button>
</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
newName:''
};
},
computed:{
msg(){
// 不推荐,vuex遵循了编码解耦的原则,个模块各司其职
return this.$store.state.resturantName;
}
},
methods:{
buy(){
console.log(this.newName);
this.$store.commit('setResturantName',{
resturantName:this.newName
})
},
badBuy(){
this.$store.dispatch('setResturantNameAsync',{
resturantName:this.newName
})
},
doAjax(){
this.$store.dispatch('doAjax',{
_this:this
})
}
}
}
</script>
<style>
</style>
五、Vuex的异步加载
Actions.js:
export default {
setResturantNameAsync: (context, payload) => {
console.log('xxxx');
setTimeout(()=>{
console.log('yyyy');
context.commit('setResturantName',{
resturantName:payload.resturantName
})
},6000);
console.log('zzzz');
},
doAjax:(context,payload)=>{
let _this =payload._this;
let url = _this.axios.urls.SYSTEM_MENU_TREE;
_this.axios.post(url,{}).then((response) => {
console.log(response);
}).catch(function(error) {
console.log(error);
});
}
}
调用代码:
doAjax(){
this.$store.dispatch('doAjax',{
_this:this
})
}
结果图片: