码迷,mamicode.com
首页 > 微信 > 详细

uniapp生成的app跳转到微信小程序

时间:2021-03-17 14:15:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   res   指定   默认   nbsp   cti   app跳转   跳转   service   

参考链接http://www.html5plus.org/doc/zh_cn/share.html#plus.share.ShareService.launchMiniProgram

注意:需要先在manifest.json中配置【微信消息及朋友圈】

plus.share.getServices(function(res){  
    var sweixin = null;  
    for(var i=0;i<res.length;i++){  
        var t = res[i];  
        if(t.id == ‘weixin‘){  
            sweixin = t;  
        }  
    }  
    if(sweixin){  
        sweixin.launchMiniProgram({  
            id: ‘原始id‘,
        path: ‘pages/index/index?phone=‘ + UserID, // 指定默认页面及传参(可不要此行) type:
0 }); } },function(res){ console.log(JSON.stringify(res)); });

 

注意:开发运行状态下唤醒还是会失败,要发布成应用,并且对应开发平台的包名,就能拉起成功了

转自:https://ask.dcloud.net.cn/question/67412

 

uniapp生成的app跳转到微信小程序

标签:str   res   指定   默认   nbsp   cti   app跳转   跳转   service   

原文地址:https://www.cnblogs.com/zhaohui-116/p/14540714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!