uniapp中的两个tabbar页面互相传参
在onLoad函数中通过getApp().globalData.paramsData获取传过来的参数对象使用。
·
传参页面书写代码:
uni.switchTab({
url: item.link,
success: function(res) {
getApp().globalData.paramsData={
arrow_show: item.id
};
}
})
接收参数页面:
onLoad(options){
let {s,t} = topAdaption();
this.statusBarHeight = s;
this.titleBarHeight = t;
this.arrow_show = getApp().globalData.paramsData.arrow_show
this.getDates()
},
在onLoad函数中通过getApp().globalData.paramsData获取传过来的参数对象使用。
更多推荐
已为社区贡献1条内容
所有评论(0)