uniapp:关于如何解决向tabbar页面传参这件事

在uniapp中,由于switchTab不支持直接传递参数,可以通过缓存storage、全局变量globalData或vuex来实现向tabbar页面传递参数。详细介绍了三种方法的实现步骤,并指出uni.$on和uni.$emit在特定场景下不适用的原因。
摘要由CSDN通过智能技术生成

先说这个问题,如何向tabbar页面传递参数,为什么会有这个问题,请看uniapp的文档上是这么写的;

所以像下方写的代码,是完全不生效的!只会跳到tabbar center页面,但是并不能在onLoad中获取到传递的参数

uni.switchTab({
	url: '/pages/center/center?id=999'
});

那么如何去向tabbar页面传递参数?

1. 利用缓存storage

<template>
	<view><button @click="click">去tabbar center页面</button></view>
</template>

<script>
export default {
	methods: {
		click() {
			uni.setStorageSync('id', 999);
			uni.switchTab({
				url: '/pages/center/center'
			});
		}
	}
};
</script>

tabbar页面 center

<template>
	<view>center</view>
</template>

<script>
export default {
	onShow() {
		const id = uni.getStorageSync('id');
		console.log(id);
	}
};
</script>

2. 利用全局变量globalData

App.vue

list页面

<template>
	<view><button @click="click">去tabbar center页面</button></view>
</template>

<script>
export default {
	methods: {
		click() {
			// 利用App.vue globalData
			getApp().globalData.id = 999;
			uni.switchTab({
				url: '/pages/center/center'
			});
		}
	}
};
</script>

tabbar页面 center

<template>
	<view>center</view>
</template>

<script>
export default {
	onShow() {
		const id = getApp().globalData.id;
		console.log(id);
	}
};
</script>

3. 利用vuex

store/index.js

list.vue

<template>
	<view><button @click="click">去tabbar center页面</button></view>
</template>

<script>
import { mapMutations } from 'vuex';
export default {
	methods: {
		...mapMutations(['setId']),
		click() {
			// 3.利用vuex
			this.setId(999);
			uni.switchTab({
				url: '/pages/center/center'
			});
		}
	}
};
</script>

tabbar页面 center

<template>
	<view>center</view>
</template>

<script>
import { mapState } from 'vuex';
export default {
	computed: {
		...mapState(['id'])
	},
	onShow() {
		console.log(this.id);
	}
};
</script>

除此之外有人可能会想起为什么不适用uni.$on uni.$emit的方式,那就是看文档又不认真了嗷

如何使用uni.$emit()和uni.$on() 进行页面间通讯 - DCloud问答

 什么意思呢,就是说,如果我们tabbar center页没有被打开过,那么从任意一个页面跳转到center页面,center页面是属于首次打开的情况,那么即使你在跳转的页面使用uni.$emit发送了一个事件携带了数据,但是center中的uni.$on是监听不到的,故,在此场景中uni.$on;uni.$emit并不适用,不推荐

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Jay丶萧邦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值