微信小程序之API 转发给好友 (Page.onShareAppMessage)

wxml部分

转发事件一定是绑在 button 组件上面.给button组件设置属性:open-type="share"
点击按钮直接就会触发转发的方法,可以转发给指定的微信好友.
但是这个需求还不够,用户那边收到的是 转发的那个页面,点进去以后也是那个页面

 
js部分
/**
   * 用户点击右上角分享
   */
  onShareAppMessage: function(res) {
    let that = this;
    // console.log('主图------------->',that.data.goodsObj.MainImages)
    return {
      title: "发送给好友",
      imageUrl: that.data.goodsObj.MainImages,
      success: function(res) {
        console.log(res, "转发成功")
      },
      fail: function(res) {
        console.log(res, "转发失败")
      }
    }

  },

你可能感兴趣的:(微信小程序之API 转发给好友 (Page.onShareAppMessage))