标签: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
标签:str res 指定 默认 nbsp cti app跳转 跳转 service
原文地址:https://www.cnblogs.com/zhaohui-116/p/14540714.html