首页 > 技术文章 > uniapp 开发的app 唤醒微信客户端以及微信小程序

shoolnight 2021-07-15 14:07 原文

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: 'gh_xxxxxxxx',
      type: 0
    });
  }
},function(res){
  console.log(JSON.stringify(res));
});

推荐阅读