美文网首页
小程序 button分享自定义页面 open-type="sha

小程序 button分享自定义页面 open-type="sha

作者: ZOYA_MOLA | 来源:发表于2020-07-07 10:53 被阅读0次

aaa.wxml

<button open-type="share">
    分享
  </button>

aaa.js

  // 用户点击按钮分享
  onShareAppMessage: function (res) {
      if (res.from === 'button') {
          // 来自页面内转发按钮
          console.log(res.target)
      }
      return {
          title: '自定义!',
          path: '/share/beInvolved/beInvolved',
          imageUrl: '../../img/share.png',
          success: function(res) {},
          fail: function() {}
      }
  },

踩坑纪实:
创建page的js底部自有onShareAppMessage事件
自定义的onShareAppMessage 被底部空白的 onShareAppMessage 干掉了

相关文章

网友评论

      本文标题:小程序 button分享自定义页面 open-type="sha

      本文链接:https://www.haomeiwen.com/subject/gjcaqktx.html