安卓微信分享图标不显示的问题

网页域名:https://lottery.zhihemedia.com/jparking/chests

let shareData = {
      title: "开宝箱,抽iphone X!",
      desc: "霸王宝箱打开,里面有个iphone X手机!",
      link: PATH + '/wechat/redirect?redirectUrl=' + encodeURIComponent(StartUrl + '&shareId=' + ShareId),
      imgUrl: 'https://statics.zhihemedia.com/lottery/res/web/internationalExhibition/images/index.jpg',
      success: function () {
           ajaxData(PATH + '/jparking/' + sn + '/share').then(function (res) {
                 if (res.success) {
                       alert('分享成功');
                 }
           });
      }
 };

 图片imgUrl: 'https://statics.zhihemedia.com/lottery/res/web/internationalExhibition/images/index.jpg',

改为相同域名后:

 图片imgUrl: 'https://lottery.zhihemedia.com/lottery/res/web/internationalExhibition/images/index.jpg',

猜你喜欢

转载自blog.csdn.net/github_37360787/article/details/82700206