微信小程序实现分享到朋友圈的方法 onShareTimeline()代码
Mr.刘 发布 | 2022-5-18 | 阅读量:175473
1、在要分享的页面必须加入下面代码:
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
})
2、在分享页面加入分享朋友圈代码:
/**
* 用户点击右上角分享
*/
onShareAppMessage: function (res) {
if (res.from === 'button') {
// 来自页面内转发按钮
console.log(res.target)
}
return {
title: wx.getStorageSync('article_title'),
path: '/pages/article/'
}
},
/**
* 用户分享朋友,目前只支持安卓
*/
onShareTimeline: function () {
return {
title: wx.getStorageSync('article_title'),
query: {
key:'d'
},
imageUrl: wx.getStorageSync('article_thumb'),
}
},