小程序分享

2022-09-03  本文已影响0人  苍老师的眼泪

分享给朋友和分享到朋友圈

  1. 只能在某个页面下分享,不支持在 app.js 中配置全局分享
  2. 分享到朋友圈的前提是能分享给朋友,并且有 web-view 的页面不支持分享到朋友圈


    150fe8a47381385a88762e7cf372189.jpg
  onShareAppMessage({from, target, webViewUrl}) {
    console.log(from)
    console.log(target)
    console.log(webViewUrl)

    let { share_title: title, share_poster: imageUrl } = this.data
    console.log(title, imageUrl)
    let path = '/pages/index/index'

    return {
      title,
      path, 
      imageUrl,
    }
  },

  onShareTimeline() {
    let { share_title: title, share_poster: imageUrl } = this.data
    console.log(title, imageUrl)
    let query = '' 

    return {
      title,
      query, 
      imageUrl,
    }
  },
上一篇 下一篇

猜你喜欢

热点阅读