A(小程序)跳转B(小程序),B(接收参数)

//A小程序
uni.navigateToMiniProgram({
	appId: 'wx936466fce7552222',//B的appid
	  extraData: {//携带参数
	      token:token,
		  ocid:ocid
	  },
	  success(res) {
	    // 打开成功
	  }
	})

B小程序编译配置:
在这里插入图片描述
B小程序 :App.vue页面(取值)

onLaunch: function(options) {//初次渲染时,执行,只触发一次
			console.log(options)
},
onShow: function(options) {//进入前台就执行
			console.log(options.referrerInfo.extraData.token,options.referrerInfo.extraData.ocid)
}

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐