微信小程序中跳转另一个小程序

wx.navigateToMiniProgram({
      appId: 'xxxxxxxxxxxxxxxxxx', // 要跳转的小程序的appid
      path: 'page/index/index', // 跳转的目标页面
      extarData: {
        open: 'auth'
      },
      success(res) {
        // 打开成功  
      }
}) 

  

猜你喜欢

转载自www.cnblogs.com/alululu/p/9494719.html