Uniapp中vuex的使用

vuex的学习笔记,很多地方还都不是很懂,先记下来再说,比小程序里自带的store复杂很多,看着头大,而且方法里面很多ES6的内容,头都看到爆炸

一、初始化vuex

新建store.js,挂载到main.js

1、在根目录下创建 store 文件夹,用来存放 vuex 相关的模块

2、在 store 中新建 store.js 文件

3、在 store.js 中初始化 Store 的实例对象

//1.导入Vue和Vuex
import Vue from 'vue'
import Vuex from 'vuex'
//2.将 Vuex 安装为 Vue 的插件
Vue.use(Vuex)
// 3.创建 Store 的实例对象
const store = new Vuex.Store({
    // 挂载 store 模块
	modules: { }
})
// 4.向外共享 Store 的实例对象
export default store

4、在 main.js 中导入 store 实例对象并挂载到 Vue 的实例上

// 1、 导入 store 的实例对象
import store from '@/store/store.js'
const app = new Vue({
	...App,
    // 2、 将 store 挂载到 Vue 实例上
	store
})
app.$mount()

二、创建 store 模块

新建 cart.js ,挂载到 store.js

1、在 store 文件夹中新建 cart.js 文件

2、在 cart.js 中初始化 vuex 模块

export default {
	namespaced: true,
	state: () => ({
		// 购物车的数组,用来存储购物车中每个商品的信息对象
		// 每个商品的信息对象,都包含如下6个属性:
		// { goods_id,goods_name,goods_price,goods_count,goods_small_logo,goods_state }
		cart: []
	}),
	mutations: {},
	getter: {}
}

3、在 store.js 中,导入并挂载 购物车cart的 vuex 模块

import Vue from 'vue'
import Vuex from 'vuex'
// 1、导入购物车cart的 vuex 模块
import moduleCart from '@/store/cart.js'

Vue.use(Vuex)

const store = new Vuex.Store({
	modules: {
        // 2、挂载购物车的 vuex 模块,模块内成员的访问路径被调整为 m_cart 例如:
        //    购物车模块中 cart 数组的访问路径是 m_cart/cart
		'm_cart': moduleCart
	}
})

export default store

三、使用 store 中的数据

导入 vuex 的方法,把数据作为计算属性使用

1、使用state

定义时的数据样本

    state: () => ({
		cart: []
	}),

 使用辅助方法按需导入

    import { mapState } from 'vuex'

 在计算属性里面展开

        computed: {
			// 调用 mapState 方法, 把m_cart 模块中的 cart 数组映射到当前页面中,作为计算属性来使用
			// ...mapSate('模块的名称',['要映射的模块里的数据名称'])
			...mapState('m_cart', ['cart'])
		},

然后就可以直接使用

{{cart.length!=0 ? cart[0].goods_name : 0}}

2、使用 Mutations

首先也是导入

	import { mapState,mapMutations } from 'vuex'

 然后在methods中使用辅助方法按需导入

就可以像普通方法一样使用

        methods: {
			...mapMutations('m_cart', ['addToCart']),
			
			// 右侧按钮的点击事件处理函数
			buttonClick(e) {
				//1.判断是否点击了 加入购物车 按钮
				if (e.content.text === '加入购物车') {
					// 2、组织一个商品的信息对象
					const goods = {
						goods_id: this.goods_info.goods_id, //商品的Id
						goods_name: this.goods_info.goods_name, //商品的名称
						goods_count: 1, //商品的数量		
					}

					// 3、通过 this 调用映射过来的 addToCart 方法,把商品信息对象存储到购物车中
					this.addToCart(goods)
				}
			}
		}

3、使用getters

getters相当于计算属性,把state里的数据进行处理后供使用

	import { mapState,mapMutations,mapGetters } from 'vuex'

gettets和 state 一样,都在计算属性里用辅助方法展开

        computed: {
			...mapState('m_cart', ['cart']),
			...mapGetters('m_cart', ['total'])
		}

 如果total变化的话,购物车的上标也跟着变化

        watch: {
			total(newVal) {
				const findResult = this.options.find(x => x.text === '购物车')
				if (findResult) {
					findResult.info = newVal
				}
			}
		}

四、完整文件

复制过来备忘,测试过能运行,不过只复制了 vuex 相关的文件

main.js

主运行文件,在这里要导入并加载store.js

// #ifndef VUE3
import Vue from 'vue'
import App from './App'
import store from '@/store/store.js'

// 导入网络请求的包
import {
	$http
} from '@escook/request-miniprogram'

uni.$http = $http

// 请求和根路径
$http.baseUrl = 'https://api-hmugo-web.itheima.net'

// 请求拦截器
$http.beforeRequest = function(options) {
	uni.showLoading({
		title: '数据加载中...'
	})
}

// 响应拦截器
$http.afterRequest = function(options) {
	uni.hideLoading()
}

// 封装弹框的方法,括号里是默认值
uni.$showMsg = function(title = "数据请求失败!", duration = 1500) {
	uni.showToast({
		title,
		duration,
		icon: 'none'
	})
}

Vue.config.productionTip = false

App.mpType = 'app'

const app = new Vue({
	...App,
	store
})
app.$mount()
// #endif

// #ifdef VUE3
import {
	createSSRApp
} from 'vue'
import App from './App.vue'
export function createApp() {
	const app = createSSRApp(App)
	return {
		app
	}
}
// #endif

 store.js

vuex 的配置文件,要把各个 vuex 模块(比如cart.js 就是一个购物车共享数据模块)导入并挂载到这里

//1.导入Vue和Vuex
import Vue from 'vue'
import Vuex from 'vuex'
// import moduleCart from '@/store/cart.js'
import cartModule from '@/store/cart.js'

//2.将 Vuex 安装为 Vue 的插件
Vue.use(Vuex)



// 3.创建 Store 的实例对象
const store = new Vuex.Store({
	modules: {
		// 'm_cart': moduleCart
		'm_cart': cartModule
	}
})



// 4.向外共享 Store 的实例对象
export default store

cart.js

vuex 模块

里面的state,相当于data

mutations,相当于methods

getters,相当于computer

export default {
	namespaced: true,

	state: () => ({
		// 购物车的数组,用来存储购物车中每个商品的信息对象
		// 每个商品的信息对象,都包含如下6个属性:
		// { goods_id,goods_name,goods_price,goods_count,goods_small_logo,goods_state }
		cart: JSON.parse(uni.getStorageSync('cart') || '[]')
	}),

	mutations: {
		// goods是传进来的商品
		// 如果在state.cart的子对象中 找到和 goods 相同的goods_id,返回 符合条件的对象
		// 如果没找到相同的,返回undefined,往state.cart 中 push goods
		addToCart(state, goods) {
			const findResult = state.cart.find(x => x.goods_id === goods.goods_id)
			console.log(findResult)
			if (!findResult) {
				//如果购物车中没有这件商品,则直接 push
				state.cart.push(goods)
			} else {
				// 如果购物车中有这件商品,则只更新数量即可
				findResult.goods_count++
			}
			// 通过 commit 方法,调用 m_cart 命名空间下的 saveTostorage 方法
			this.commit('m_cart/saveToStorage')
		},
		saveToStorage(state) {
			uni.setStorageSync('cart', JSON.stringify(state.cart))
		}
	},

	getters: {
		total(state) {
			let c = 0
			state.cart.forEach(x => c += x.goods_count)
			return c
		}
	}
}

goods_detail.vue

购物车页面,共享数据怎么使用都在这个页面示范了






你可能感兴趣的:(uniapp,微信小程序,uni-app,前端,javascript,vue.js,vuex)