uniapp 开发的app 唤醒微信客户端以及微信小程序

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));
});

posted @ 2021-07-15 14:07  Monroe_Yu  阅读(748)  评论(0编辑  收藏  举报