关于uniapp唤醒微信小程序
发表时间:2020-9-22
发布人:葵宇科技
浏览次数:113
uniapp唤醒微信小程序方法
//判断需要唤醒的客户端
plus.share.getServices(
function(res) {
let sweixin = null;
for (let i in res) {
if (res[i].id == 'weixin') {
sweixin = res[i];
}
}
//唤醒微信小程序
if (sweixin) {
sweixin.launchMiniProgram({
// 微信小程序的ID
id: '*******', //原始ID
type: 2, //微信小程序版本
path: 'pages/share/board/index?' + query //跳转的小程序页面位置
});
}
}, function(e) {
console.log('获取分享服务列表失败:' + e.message);
}
);