这是A小程序的代码
这是B小程序的代码,在B小程序,接受A小程序带过来的传数
,我在onLoad和onShow都接收参数,在真机上
onLoad和onShow打印出来都为空
建议参考下面这个回答:
小程序之间的传值 https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=00022a2c078f80a8593610d925b800&highline=wx.navigateToMiniProgram
在app.js中接app({
onLaunch: function (options) {
var that = this
that.globalData.catalog = options.referrerInfo.extraData.id; //小程序进入的传参
}
})