传参页面书写代码:

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获取传过来的参数对象使用。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐