微信小程序自定义分享图片标题
2022-03-01 本文已影响0人
IamaStupid
微信小程序自定义分享图片标题
参考: https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html
onShareAppMessage: function() {
return {
title: 'xxxxYYYY',
desc: 'abcd',
path: 'pages/company/index',
imageUrl: 'https://xxx/share.jpg', // 可以更换分享的图片
success: function (res) {
// 转发成功
wx.showToast({
title: '分享成功',
icon: "none"
});
},
fail: function (res) {
// 转发失败
wx.showToast({
title: '分享失败',
icon: "none"
})
}
}
},