uniapp生成的app跳转到微信小程序
时间:2021-03-17 14:15:42
收藏:0
阅读:0
参考链接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
评论(0)