vuex的使用介绍

1、引入

//main.js
import store from "./store"
Vue.prototype.$store = store
const app = new Vue({
	store,
    ...App
})

2、创建store文件夹,我这个是开启了模块空间

//例如
export default {
	state:{
		// 登录状态
		loginStatus:false,
		// token
		token:null,
		// 用户信息
		userInfo:{}
	},
	mutations:{
		// 登录
		login(state,userinfo){
			state.userInfo = userinfo
			state.loginStatus = true
			state.token = userinfo.token
			// 持久化存储
			uni.setStorageSync('userInfo',JSON.stringify(userinfo))
		},

	},
	actions:{
		// 更新购物车列表
		doShowPopup({state,commit},parmas){
		   //	commit('login',data)  调用mutations方法,state就是state值,parmas为传值的参数
			
		},
	}
}

在这里插入图片描述

3、调用的介绍

//调用方式:
总的引入:import {mapState,mapGetters,mapActions,mapMutations} from "vuex", 通过解构方式的,不需要区分模块名

1import {mapState} from 'vuex';
	computed: {
			...mapState({
				loginStatus:state=>state.user.loginStatus,
				userInfo:state=>state.user.userInfo
			})
		},
	第二种:this.$store.state.user.token  引入store或者原型上的store名,因为用了modules,需要带上模块名,比如user模块,然后取到user的state的token值	
	
    描述:直接调用重构变量名后的变量 ,例如:<view>userInfo.name</view>
  
 2import {mapActions} from "vuex"
 methods: {
 	...mapActions([
 		'doHidePopup',
 		'updateCartList'
 	]),
 }	
 描述:直接通过this.doHidePopup() 调用方法
 
 第二种:  this.$store.dispatch("vuexTest/actionsHello", "val123456"); // 前面是指定模块vuexTest 中的actionsHello 方法,后面是传参 可以是对象、数组、字符串等
 
 3import {mapGetters} from "vuex"
	computed: {
			...mapGetters([
				'checkedAll',
				'totalPrice',
				'disableSelectAll'
			])
		},
 描述:直接调用变量名,不用区分模块名,例如: <price :text="totalPrice"></price>
 
 4import {mapMutations} from "vuex"
 	methods:{
		 ...mapMutations([
			'selectItem',
			'initCartList',
			'unSelectAll'
		 ]),
    }
 描述:直接调用方法名,不用区分模块名,例如: <view @click="selectItem()">点击</view>
 
 第二种调用:this.$store.commit("vuexTest(模块名)/mutationsHello", 2)   前面是指定模块vuexTest ,mutationsHello指vuexTest(模块名)内的方法名,
 如果没有开启model模块,如:this.$store.commit("mutationsHello", 2),mutationsHello就是action的方法名,2是参数
 

在 Uniapp 中使用 Vuex,可以实现全局状态管理。下面是一个简单的示例,介绍如何在 Uniapp 中使用 Vuex。 1. 首先,在你的项目中安装 Vuex: ```bash npm install vuex ``` 2. 在你的项目中创建一个 `store` 目录,用于存放 Vuex 相关的文件。 3. 在 `store` 目录下创建一个 `index.js` 文件,用于配置 Vuex 的核心内容。 ```javascript // store/index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment(state) { state.count++ }, decrement(state) { state.count-- } }, actions: { increment(context) { context.commit('increment') }, decrement(context) { context.commit('decrement') } }, getters: { getCount(state) { return state.count } } }) export default store ``` 在上述代码中,我们定义了一个包含 `state`、`mutations`、`actions` 和 `getters` 的 Vuex store。`state` 用于存储应用的状态,`mutations` 用于修改状态,`actions` 用于提交 mutations,`getters` 用于获取状态。 4. 在主入口文件 `main.js` 中导入并挂载 Vuex store: ```javascript // main.js import Vue from 'vue' import App from './App' import store from './store' Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ store, ...App }) app.$mount() ``` 在上述代码中,我们将创建的 Vuex store 对象导入并挂载到 Vue 实例上,这样就可以在整个应用中共享该 store 中定义的状态和方法。 5. 现在,你可以在组件中使用 Vuex 了。例如,在一个组件中获取和修改状态: ```vue <template> <div> <p>Count: {{ count }}</p> <button @click="increment">Increment</button> <button @click="decrement">Decrement</button> </div> </template> <script> export default { computed: { count() { return this.$store.getters.getCount } }, methods: { increment() { this.$store.dispatch('increment') }, decrement() { this.$store.dispatch('decrement') } } } </script> ``` 在上述代码中,我们通过 `$store` 访问 Vuex store 对象,使用 `getters` 获取状态,使用 `dispatch` 提交 actions。 这样,你就可以在 Uniapp 中使用 Vuex 进行全局状态管理了。希望对你有所帮助!如果有任何疑问,请随时提出。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值