cordova-plugin-wechat
cordova-plugin-wechat copied to clipboard
关于微信分享缩略图
你好,我又来麻烦你了.... 关于微信分享的缩略图 我的代码是这样的。但是没有抓取到缩略图,请问这个缩略图在哪配置呢?需要传什么参数,还是微信自己抓的??劳烦了。。。 function firendShare(){ WeChat.isInstalled(function(){ WeChat.share({ type: WeChat.ShareType.webpage, title: $scope.shareTitle, description: $scope.shareInfo, url: weixinShareUrl, }, WeChat.Scene.session, function(){ $rootScope.$broadcast('yt.shareAfter'); }, function (reason) { // 分享失败 $rootScope.$broadcast('yt.shareAfter'); }); },function(err){ alert('您的手机需要安装微信.'); $rootScope.$broadcast('yt.shareAfter'); })
缩略图可以使用 thumbData 参数, 传入 base64 数据. 不指定的话估计就是微信自己抓了.