当前位置: 主页 > 日志 > 个人日记 > 文章

uniapp app跳转小程序并打开相应的页面

发布时间: 2022-03-18 16:46:53 作者: 王乐园 浏览次数: 522

uniapp app跳转小程序并打开相应的页面

plus.share.getServices(res => {
       this.sweixin = res.find(i => i.id === 'weixin')
       if (this.sweixin) {
        this.sweixin.launchMiniProgram({
         id: 'gh_****',//小程序原始ID
         path:"pages/home/home",
         type:0//可取值: 0-正式版; 1-测试版; 2-体验版。 默认值为0。
        }, res => { 
         console.log('res', JSON.stringify(res))
        }, err => {
         console.log('err', JSON.stringify(err))
        })
       } else {
        // 没有获取到微信分享服务
       }
      }, err => {
       // 获取分享服务列表失败
      });

本站文章均为原创,欢迎转载,转载请以链接形式注明出处

本文地址: