Vuex
1. vue中各个组件之间传值
1.父子组件
父组件-->子组件,通过子组件的自定义属性:props
子组件-->父组件,通过自定义事件:this.$emit('事件名',参数1,参数2,...);
2.非父子组件或父子组件
通过数据总数Bus,this.$root.$emit('事件名',参数1,参数2,...)
3.非父子组件或父子组件
更好的方式是在vue中使用vuex
方法1: 用组件之间通讯。这样写很麻烦,并且写着写着,估计自己都不知道这是啥了,很容易写晕。
方法2: 我们定义全局变量。模块a的数据赋值给全局变量x。然后模块b获取x。这样我们就很容易获取到数据
变量传值的演变形式:如图
2. Vuex:
官方解释:Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。可以想象为一个“前端数据库”(数据仓库),
让其在各个页面上实现数据的共享包括状态,并且可操作
下图是vuex的图解:
vuex使用步骤
1、安装
npm install vuex -S
2 、创建store模块,分别维护state/actions/mutations/getters
store
index.js
state.js
actions.js
mutations.js
getters.js
如下图(第二部):
3、在store/index.js文件中新建vuex的store实例,并注册上面引入的各大模块
const store = new Vuex.Store({state,getters,actions,mutations})
** index.js*(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 ///
** 4 在main.js中导入并使用store实例**
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import 'element-ui/lib/theme-chalk/index.css'
// process.env.MOCK && require('@/mock')
import App from './App'
import router from './router'
import store from './store'
import ElementUI from 'element-ui'
import axios from '@/api/http'
import VueAxios from 'vue-axios'
Vue.use(ElementUI)
Vue.use(VueAxios,axios)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
data(){
return {
Bus:new Vue({
})
}
},
router,
store,
components: {
App
},
template: '<App/>'
})
5 之后按要求编码,即可使用vuex的相关功能
接下来要写的事store中
state.js:
export default {//管理变量
resturantName: '翼德西餐厅'
}
actions.js:
export default{
setResturantNameAsync: (context, payload) => {
console.log('xxxx');
setTimeout(() => {
console.log('yyyy');
// console.log(payload)
// state.resturantName = payload.resturantName;
context.commit('setResturantName', payload); //Action提交的是mutation
}, 3000)
console.log('zzzz');
},
// vuex是不能使用Vue实例的
doAjax: (context, payload) => {
let _this = payload._this
let url = _this.axios.urls.SYSTEM_USER_DOLOGIN;
_this.axios.post(url, {}).then((response)=> {
console.log('doAjax——————————————————————————');
console.log(response);
}).catch((response)=>{
console.log(response);
});
}
}
mutations.js:
export default {
setResturantName: (state, payload) => {
// payload:官方给它还取了一个高大上的名字:载荷,其实就是一个保存要传递参数的容器
state.resturantName = payload.resturantName;
}
}
getters.js:
export default {
getResturantName: (state) => {
return state.resturantName;
}
}
store中创建那些js的作用:
1 state(保存数据的容器)
状态,即要全局读写的数据
2 getters(getXxx)
获取数据并渲染,
注1:getters将state中定义的值暴露在this.$store.getters对象中,我们可以通过如下代码访问
this.$store.getters.resturantName
注2:state状态存储是响应式的,从store实例中读取状态最简单的方法就是在计算属性中返回某个状态,如下:
computed: {
resturantName: function() {
return this.$store.getters.resturantName;
}
}
3 mutations(setXxx)
处理数据的唯一途径,state的改变或赋值只能在这里
4 actions
数据的异步(async)操作
要做成下面的效果还要创建两个vue,在views中sys中创建VuexPage1和VuexPage2
代码分别如下:
VuexPage1:
<template>
<div>
<h3 style="margin: 60px;">第一个Vuex页面:{{title}}</h3>
<button @click="changeTitle">餐馆易主</button>
<button @click="changeTitleAsync">两个月后餐馆易主</button>
<button @click="doAjax">测试Vuex中使用ajax</button>
</div>
</template>
<script>
export default {
data() {
return {
};
},
methods:{
changeTitle(){
this.$store.commit('setResturantName',{
resturantName:'翼德中餐厅'
});
},
changeTitleAsync(){
this.$store.dispatch('setResturantNameAsync',{
resturantName:'翼德图书馆馆'
});
},
doAjax(){
this.$store.dispatch('doAjax',{
_this:this
});
}
},
computed:{
title(){
// return this.$store.state.resturantName;
return this.$store.getters.getResturantName;
}
}
}
</script>
<style>
</style>
VuexPage2:
<template>
<div>
<h3 style="margin: 60px;">第二个Vuex页面:{{title}}</h3>
</div>
</template>
<script>
export default {
data() {
return {
title: ''
};
},
created() {
this.title = this.$store.state.resturantName;
}
}
</script>
<style>
</style>
效果大家可能看图看不出来 但是你们可以copy过去看看效果会好理解一点
总结:
Vuex的管理员Module
其实是为了搞定那些稍微大型复杂一点的项目,避免 store 里面的数据太多。这样的话,store 对象就会变得相当的臃肿,非常难管理
Module应运而生
附录二:解决vuex数据页面刷新后初始化问题
利用已有的插件来进行保存新状态 一致的插件中,我目前使用的是vuex-along插件,该插件使用非常方便简洁
附录三:什么是Promise
Promise对象用于异步操作,它表示一个尚未完成且预计在未来完成的异步操作。
我们知道,JavaScript的执行环境是「单线程」。
所谓单线程,是指JS引擎中负责解释和执行JavaScript代码的线程只有一个,也就是一次只能完成一项任务,这个任务执行完后才能执行下一个,它会「阻塞」其他任务。这个任务可称为主线程。
但实际上还有其他线程,如事件触发线程、ajax请求线程等。
//构建Promise
var promise = new Promise(function (resolve, reject) {
if (/* 异步操作成功 */) {
resolve(data);
} else {
/* 异步操作失败 */
reject(error);
}
});
附录四:同步和异步的示例代码
同步
同步模式,即上述所说的单线程模式,一次只能执行一个任务,函数调用后需等到函数执行结束,
返回执行的结果,才能进行下一个任务。如果这个任务执行的时间较长,就会导致「线程阻塞」
var x = true;
while(x);
console.log("don't carry out"); //不会执行
异步
异步模式,即与同步模式相反,可以一起执行多个任务,函数调用后不会立即返回执行的结果,
如果任务A需要等待,可先执行任务B,等到任务A结果返回后再继续回调。
最常见的异步模式就数定时器了,我们来看看以下的例子
setTimeout(function() {
console.log('taskA, asynchronous');
}, 1000);
console.log('taskB, synchronize');
//while(true);