小程序分享功能 页面分享 按钮分享

2020-09-17  本文已影响0人  潇潇芭蕉
  // 分享
  onShareAppMessage: function () {//小程序页面方法
    return {
      path: 'pages/mine/index/index' ,//分享跳转页面
      success: function (res) {
        console.log('转发成功')
      },
      fail: function (res) {
        console.log('转发失败')
      }
    }
  },
      <button open-type="share" style="width:200rpx">//按钮分享需用到button组件
        <view>去分享</view>
      </button>

多个页面用到的话 可以自行组装方法 放在公共js里 在其他页面进行调用

上一篇下一篇

猜你喜欢

热点阅读