美文网首页让前端飞
小程序带参数分享

小程序带参数分享

作者: 董懂同学 | 来源:发表于2019-01-22 08:29 被阅读0次

小程序的分享有2种触发方式:

  1. 点击小程序右上角,底部弹出菜单分享
  2. 通过按钮触发,按钮的open-typeshare
<button open-type="share" data-id="{{ item.id }}" data-title="{{item.title}}">

分享的代码如下所示

  onShareAppMessage: function (res) {
    if (res.from === 'button') {
      // 通过按钮触发
      var data = res.target.dataset
      return {
        title: data.title,
        path: '/pages/program/index?id='+data.id,
        imageUrl: '/images/aikepler-logo.jpeg',
        success: function (res) {
          // 转发成功
          console.log('转发成功')
        },
        fail: function (res) {
          // 转发失败
          console.log('转发失败')
        }
      }
    }
    //通过右上角菜单触发
    return {
      title: '开普勒小程序',
      path: "/pages/researches/index",
      imageUrl: '/images/aikepler-logo.jpeg'
    };
  },

相关文章

网友评论

    本文标题:小程序带参数分享

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