plus.share.getServices(
res => {
let sweixin = null;
for (let i in res) {
if (res[i].id == 'weixin') {
sweixin = res[i];
}
}
//唤醒微信小程序
if (sweixin) {
uni.hideLoading()
sweixin.launchMiniProgram({
id: 'gh_XXXX', //需要跳转到的小程序的原始id,这是特别要注意的,
type: 0,
// path:'https://jingyan.baidu.com/article/XXXX.html' //跳转指定小程序的页面
});
}
}
);
id是目标小程序的原始id,这是特别要注意的,之前填成appid,直接报错:bad_param