赞
踩
使用uni.switchTab跳转tarBar时不能传参,可以通过本地缓存localStorage来达到目的
1,在传值的A界面的跳转方法里存值
uni.setStorageSync('caseTab','1')
2,在需要接值的B界面的获取数据方法里拿值
const result = uni.getStorageSync('caseTab')
if (result) {
this.coVal = result
// 用完后清除数据
uni.removeStorage({
key: 'caseTab'
})
}else{
……
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。