https://blog.csdn.net/m0_61702149/article/details/126145953
不传参的情况写法,上面的链接包含传参的写法
在当前小程序在pages.json写上 要跳转的小程序的id
"navigateToMiniProgramAppIdList":["要跳转的小程序的appid"]
小程序A到B,使用到的函数:wx.navigateToMiniProgram(Object object)
uni.navigateToMiniProgram({// appid 写你要跳转的小程序的 appidappId: '写你要跳转的小程序的 appid',// 路径写 src下的路径,假如你跳转的是pages下的页面,就可以写pages/indexpath: 'my/index?id=1545243840380669954',extraData: {// 'type': 'out'},// 这个不写的话会显示开发环境,不能正常跳转,写上就能正常跳转了envVersion: 'develop',success(res) {// 打开成功uni.showToast({title: '跳转成功'})},fail(err) {// 打开失败/取消uni.showToast({title: '跳转不成功'})}})