meteor 实现 微信分享

  Template.hello.events({
    ‘click button‘: function () {
      // increment the counter when button is clicked
      Session.set(‘counter‘, Session.get(‘counter‘) + 1);

        var imgData = "不带描述头的base64图片数据";
        WeChat
            .share({
                title: ‘链接111111‘,
                description: ‘链接描述1111‘,
                url: ‘http://www.lawxin.com‘,
                thumbData:imgData
            }, WeChat.Scene.timeline, function () {
                alert(‘分享成功~‘);
            }, function (reason) {
                // 分享失败
                alert(reason);
            });
    }
  });

  

meteor add cordova:com.wordsbaking.cordova.wechat@https://github.com/vilic/cordova-plugin-wechat/tarball/76bfa31de051f44d3835d05b6cc51331e48e604c

 

enjoy!

meteor 实现 微信分享

上一篇:Android 使用微信开放平台分享内容到微信


下一篇:【微信】微信获取TOKEN,以及储存TOKEN方法,Spring quartz让Token永不过期