uniapp小程序分享onShareAppMessage
<button open-type="share">页内分享按钮</button>
//页面按钮分享与右上角分享按钮的分享路径
//分享
onShareAppMessage(res) {
// setTimeout(() => {
console.log(res)
if (res.from === 'button') { // 来自页面内分享按钮
console.log(res.target)
return {
title:'',
path:'',
imageUrl:''
}
}else {
return {
title: '',
path: '',
imageUrl: ''
}
}
},