1、在微信开放平台添加移动应用,获取 APPID
2、在 uniapp项目配置文件 manifest.json 中,开启 “Share(分享)”,并配置微信分享对应的数据
3、获取要跳转的小程序 原始id,以 gh_ 开头
4、在代码中实现跳转语句
// #ifdef APP-PLUS
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;
}
}
console.log(‘sweixin’, sweixin)
if (sweixin) {
sweixin.launchMiniProgram({
id:’原始id’
});
}
}, function(e){
console.log(“获取分享服务列表失败: “+JSON.stringify(e));
});
// #endif