Vuex

什么是Vuex?

官方解释:Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。可以想象为一个“前端数据库”(数据仓库),让其在各个页面上实现数据的共享包括状态,并且可操作

Vuex分成五个部分:

  • State:单一状态树

  • Getters:状态获取

  • Mutations:触发同步事件

  • Actions:提交mutation,可以包含异步操作

  • Module:将vuex进行分模块

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。这样我们就很容易获取到数据

Vuex使用步骤

安装 : npm install vuex -S
创建store模块,分别新建state/actions/mutations/getters.js

在这里插入图片描述
actions.js(数据的异步(async)操作)

export default {
	setResturantNameAsync: (context, payload) => {
	  console.log('xxxx')
	  setTimeout(() => {
	    console.log('yyyy')
      // console.log(payload)//打印
	    context.commit('setResturantName', payload); //Action提交的是mutation
	  }, 3000);
	  console.log('zzzz')
	},
  doAjax:(context, payload) => {
     //vuex不能使用vue实例
     let _this = payload._this;
      let url = _this.axios.urls.SYSTEM_USER_DOLOGIN;
      console.log(url)
      _this.axios.post(url, {}).then((response) => {
        console.log('doAjax..........')
      	console.log(response);
      }).catch((response) => {
      	console.log(response);
      });
	}
}

如果要在actions 或者 mutations 中使用this对象。可以在调用的时候把this对象传过去
{resturantName: ‘setResturantName’,_this:this}//this就是在调用时的vue实例

getters.js(获取数据并渲染)

export default {
	getResturantName: (state) => {
		return state.resturantName;
	}
}

mutations.js(处理数据的唯一途径,state的改变或赋值)

export default {
  setResturantName: (state, payload) => {
    state.resturantName = payload.resturantName;
  }
}

state.js(保存数据的容器)

export default{
  resturantName:'飞猪餐馆'
}

this.$store.state.resturantName;//不建议

在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

在main.js中导入并使用store实例

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/>'
})

案例

VuexPage1.vue

<template>
	<div>
		<h3 style="margin: 60ox;">第一个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(){
				// this.title = this.$store,state.resturantName;
				return this.$store.getters.getResturantName;
			}
		}
	}
</script>

<style>

</style>


VuexPage2.vue

<template>
	<div>
		<h3 style="margin: 60ox;">第二个Vuex页面:{{title}}</h3>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				title:''
			};
		},
		created(){
			this.title = this.$store,state.resturantName;
		}
	}
</script>

<style>

</style>


效果图:
在这里插入图片描述

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值