美文网首页
Taro 小程序分享到朋友圈

Taro 小程序分享到朋友圈

作者: 我是Msorry | 来源:发表于2021-12-07 17:19 被阅读0次

参考 Taro hooks

// 分享注册
  wx.showShareMenu({
    withShareTicket: true,
    menus: ['shareAppMessage', 'shareTimeline']
  })
// 配置 button 分享
  Taro.useShareAppMessage(res => {
    if (res.from === "button") {
      // 来自页面内转发按钮
      console.log(res.target);
    }
    return {
      title: "圣诞贺卡",
      imageUrl: "", // 图片 URL
      path: "/pages/christmas/index"
    };
  });
// 配置分享到朋友圈
  Taro.useShareTimeline(res=>{
    return {
      title: "圣诞贺卡",
      query: "", 
      imageUrl: 
    };
  })
// index.config.ts
export default {
  // 当 `onShareAppMessage` 没有触发时,可以尝试配置此选项
  enableShareAppMessage: true
}

相关文章

网友评论

      本文标题:Taro 小程序分享到朋友圈

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