Vuex
课程目标
1、了解vuex中的各个js文件的用途
2、利用vuex存值
3、利用vuex取值
4、Vuex的异步加载问题
Vuex中的各个js文件的用途
图解vuex各组件:
官方图解Vuex:
1. vue中各个组件之间传值
1.父子组件
父组件–>子组件,通过子组件的自定义属性:props
子组件–>父组件,通过自定义事件:this.$emit(‘事件名’,参数1,参数2,…);
2.非父子组件或父子组件
通过数据总数Bus,this.
r
o
o
t
.
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进行分模块
3. vuex使用步骤
3.1 安装
npm install vuex -S
3.2 创建store模块,分别维护state/actions/mutations/getters
3.3 在store/index.js文件中新建vuex的store实例,并注册上面引入的各大模块
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实例
import store from ‘./store’
然后将store挂载在vue根实例中
第一种取值方式利用vuex直接取值(不推荐)
创建两个页面:
VuexPage1:
<template>
<div>
<ul>
<li>第一章页面</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style>
</style>
VuexPage2:
<template>
<div>
<ul>
<li>第二个页面</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style>
</style>
state 定义变量:
export default {
/* 定义所有变量 */
resturantName:'牛栏自助餐'
}
index.js 添加路由:
import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import AppMain from '@/components/AppMain'
import Articles from '@/views/sys/Articles'
import VuexPage1 from '@/views/sys/VuexPage1'
import VuexPage2 from '@/views/sys/VuexPage2'
import Login from '@/views/Login'
import Reg from '@/views/Reg'
Vue.use(Router)
export default new Router({
/* 定义路由线路 */
routes: [
{
path: '/',
name: 'Login',
component: Login
},
{
path: '/Login',
name: 'Login',
component: Login
},
{
path: '/Reg',
name: 'Reg',
component: Reg
},
{
path: '/AppMain',
name: 'AppMain',
component: AppMain,
children:[
{
path: '/sys/Articles',
name: 'Articles',
component: Articles
},
{
path: '/sys/VuexPage1',
name: 'VuexPage1',
component: VuexPage1
},
{
path: '/sys/VuexPage2',
name: 'VuexPage2',
component: VuexPage2
}
]
}
]
})
但是需要取到state.js中的变量,vuex才可以使用
在VuePage1中定义计算属性 取state中的变量:
<template>
<div>
<ul>
<li>第一章页面:{{msg}}</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
};
},
/* 计算属性 */
computed:{
msg(){
/* 不推荐这种取值方式 ,vuex遵循了编码解耦的原则,各模块各司其职*/
/* 取state中的变量牛栏自助餐 */
return this.$store.state.resturantName;
}
}
}
</script>
<style>
</style>
第一、二张页面已经取到值:
第二种取值方式:getters取值:
VuexPage2:
<template>
<div>
<ul>
<li>第二个页面:{{msg}}</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
};
},
/* 计算属性 */
computed:{
msg(){
/* 取state中的变量牛栏自助餐 */
/* 第二种方式使用get方式取值: */
return this.$store.getters.getResturantName;
}
}
}
</script>
<style>
</style>
第二种取值方式的结果:
Vuex同步存值(mutations):
mutations.js:
export default{
/* 同步存值 载荷:payload 传递参数的一个容器*/
setResturantName:(state,payload) => {
state.resturantName = payload.resturantName
}
}
VuePage1:
<template>
<div>
<ul>
<li>第一章页面:{{msg}}</li>
<li>
<!--数据双向绑定 -->
<input v-model="newName" />
<button @click="buy">买它</button>
</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
newName:''
};
},
/* 计算属性 */
computed:{
msg(){
/* 第一种方式,直接取值取state中的变量牛栏自助餐 */
/* 不推荐这种取值方式 ,vuex遵循了编码解耦的原则,各模块各司其职*/
return this.$store.state.resturantName;
}
},
methods:{
buy(){
/* mutations传参 改变定义事件*/
this.$store.commit('setResturantName',{
resturantName:this.newName
})
}
}
}
</script>
<style>
</style>
同步存值结果:
Vuex异步存值(actions):
actions.js:
export default {
/* 异步存值 mutation的升级版*/
setResturantNameAsync: (context,payload) => {
console.log('xxx')
setTimeout(() => {
console.log('yyy')
context.commit('setResturantName',{
resturantName: payload.resturantName
})
},6000);
console.log('zzz');
}
}
VuePage1:
<template>
<div>
<ul>
<li>第一章页面:{{msg}}</li>
<li>
<!--数据双向绑定 -->
<input v-model="newName" />
<button @click="buy">买它</button>
<button @click="nextBuy">是个坑</button>
</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
newName:''
};
},
/* 计算属性 */
computed:{
msg(){
/* 第一种方式,直接取值取state中的变量牛栏自助餐 */
/* 不推荐这种取值方式 ,vuex遵循了编码解耦的原则,各模块各司其职*/
return this.$store.state.resturantName;
}
},
methods:{
buy(){
console.log(this.newName);
/* mutations传参 改变定义事件 commit同步函数*/
this.$store.commit('setResturantName',{
resturantName:this.newName
})
},
nextBuy(){
/* dispatch 异步函数 */
this.$store.dispatch('setResturantNameAsync',{
resturantName:this.newName
})
}
}
}
</script>
<style>
</style>
异步存值:
Vuex异步加载
action.js:
export default {
/* 异步存值 mutation的升级版*/
setResturantNameAsync: (context, payload) => {
console.log('xxx')
setTimeout(() => {
console.log('yyy')
context.commit('setResturantName', {
resturantName: payload.resturantName
})
}, 6000);
console.log('zzz');
},
doAjax: (context, payload) => {
let _this = payload._this
let url = _this.axios.urls.SYSTEM_USER_DOLOGIN;
_this.axios.post(url, {}).then((response) => {
console.log(response);
}).catch(function(error) {
console.log(error);
});
}
}
VuexPage1:
<template>
<div>
<ul>
<li>第一章页面:{{msg}}</li>
<li>
<!--数据双向绑定 -->
<input v-model="newName" />
<button @click="buy">买它</button>
<button @click="nextBuy">是个坑</button>
<button @click="doAjax">调用ajax</button>
</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
newName:''
};
},
/* 计算属性 */
computed:{
msg(){
/* 第一种方式,直接取值取state中的变量牛栏自助餐 */
/* 不推荐这种取值方式 ,vuex遵循了编码解耦的原则,各模块各司其职*/
return this.$store.state.resturantName;
}
},
methods:{
buy(){
console.log(this.newName);
/* mutations传参 改变定义事件 commit同步函数*/
this.$store.commit('setResturantName',{
resturantName:this.newName
})
},
nextBuy(){
/* dispatch 异步函数 */
this.$store.dispatch('setResturantNameAsync',{
resturantName:this.newName
})
},
doAjax(){
this.$store.dispatch('doAjax',{
_this:this
})
}
}
}
</script>
<style>
</style>