小程序 分享功能 以及 自定义分享图

onShareAppMessage: function () {
var that = this;
var shareimg = [
  "https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRcaISLHUAAaIAQtVJyoAAf_UAJK9e8ABogZ224.jpg",
  "https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRciIK04QAAPSUiTmb7UAAf_UAJRfggAA9Jq257.jpg",
  "https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRciIGHuyAAIISdSwzIYAAf_UAJ1MKkAAghh731.jpg"
]
var randomImg = shareimg[Math.floor(Math.random() * shareimg.length)];
return {
  title: '标题',
  desc: '',
  path: '路径',
  imageUrl: randomImg, // 可以更换分享的图片
  success: function (res) {
    // 转发成功
    wx.showToast({
      title: '分享成功',
      icon: "none"
    });
  },
  fail: function (res) {
    // 转发失败
    wx.showToast({
      title: '分享失败',
      icon: "none"
    })
  }
}
},

你可能感兴趣的:(小程序 分享功能 以及 自定义分享图)