侧边栏壁纸
  • 累计撰写 25 篇文章
  • 累计收到 1 条评论

Taro 小程序分享到朋友圈

2022-6-23 / 0 评论 / 2282 阅读
温馨提示:
本文最后更新于 2022-6-23,已超过半年没有更新,若内容或图片失效,请留言反馈。

Taro.showShareMenu({
      withShareTicket: true,
      menus: ['shareAppMessage', 'shareTimeline'],
      success(res) {
        console.log(res)
      },
      fail(e) {
        console.log(e)
      }
    })
    Taro.useShareAppMessage(res => {
      if (res.from === 'button') {
        // 来自页面内转发按钮
        console.log(res.target)
      }
      return {
        title: '顺医控关爱到家',
        imageUrl: 'https://cdn2.jianshu.io/assets/default_avatar/2-9636b13945b9ccf345bc98d0d81074eb.jpg',
        path: '/pages/home/index?from=mini_ShareApp',

      }
    })
    Taro.useShareTimeline(() => {
      return {
        title: '顺医控关爱到家', //字符串  自定义标题
        query: '/pages/home/index?from=mini_Timeline',  //页面携带参数
        imageUrl: 'https://cdn2.jianshu.io/assets/default_avatar/2-9636b13945b9ccf345bc98d0d81074eb.jpg'   //图片地址
      }
    })
// index.config.ts
export default {
  // 当 `onShareAppMessage` 没有触发时,可以尝试配置此选项
  enableShareAppMessage: true
}

扫描二维码,在手机上阅读