web-view跳转其他小程序

1.在html页面写入


       

2.在小程序写一个中间页面,然后再中间页面写入button按钮事件

tz:function(){
    wx.navigateToMiniProgram({
      appId: '',
      path: '',
      envVersion: 'trial',//develop 开发版 trial   体验版 release 正式版
      success(res) {
        // 打开其他小程序成功同步触发
        console.log(123);
      },
      fail:function(a){
        console.log(456);
        console.log(a);
      }
    })
  },

你可能感兴趣的:(web-view跳转其他小程序)