收藏
回答

微信转发功能onShareAppMessage点击后设置无效问题

JS中 


onShareAppMessage: function (res) {

    if (res.from === 'button') {

      // 来自页面内转发按钮

      console.log(res.target)

    }

    return {

      title: '自定义转发标题',

      path: '/pages/component/product/product',

      success: function (res) {

        console.log("转发成功")

      },

      fail: function (res) {

        console.log("转发失败")

      }

    }

  },


通过HTML的button按钮触发

<button class="icon-item" data-idx="{{item.id}}" open-type="share" bindtap="onShareAppMessage">分享</button>



点击后的确有转发功能,但是我设置的title和path都没有,仍然是当前页面,这是为什么?

回答关注问题邀请回答
收藏

4 个回答

  • 张 - 上游
    张 - 上游
    2017-10-04

    我也发现这个问题,不知道楼主解决了没有

    2017-10-04
    有用
    回复
  • 麦叻
    麦叻
    2017-08-09

    已去掉bindtap 效果依旧 只出现当前页面和没有title

    2017-08-09
    有用
    回复
  • 云选片~影楼在线选片小程序
    云选片~影楼在线选片小程序
    2017-08-09

    已经有open-type了,你把bindtap去掉看看。

    2017-08-09
    有用
    回复
  • 麦叻
    麦叻
    2017-08-09

    而且也没有console.log出相关内容

    2017-08-09
    有用
    回复
登录 后发表内容