前提:这两个微信小程序必须是同一公众号绑定的小程序。
操作

  • 首先在app.json配置文件里面配置好要跳转的微信小程序的appid

    "navigateToMiniProgramAppIdList": [ "微信小程序的appid" ] 
  • 设置跳转的事件

    • navigator跳转

        <navigator target="miniProgram" open-type="navigate" app-id="要跳转的小程序的appid" path="要跳转的页面" extra-data="" version="release">打开绑定的小程序</navigator>
    • 点击跳转

      wx.navigateToMiniProgram({
        appId: 小程序appid,
        path: 要跳转的页面,
        extraData: {
          // from: 'xxxxx'
        },
        envVersion: 'develop',
        success(res) {
          // 打开其他小程序成功同步触发
           wx.showToast({
             title: '跳转成功'
           })
        }
      })
Last modification:April 22, 2019
If you think my article is useful to you, please feel free to appreciate