uniapp-转发功能
程序员文章站
2022-03-19 21:37:23
...
方法1、监听页面生命周期 onShareAppMessage - 用户点击右上角分享
onShareAppMessage(){
console.log("用户进行了分享")
return{
title:"用户进行了分享",
path:"pages/news/news",
imageUrl:"https://www.baidu.com/img/bd_logo1.png"
}
},
方法2、通过button按钮的open-type开放能力,点击 share 分享按钮时会触发 onShareAppMessage
<button open-type="share" type="primary">点击转发</button>
......
onShareAppMessage(){
console.log("用户进行了分享")
return{
title:"用户进行了分享",
path:"pages/news/news",
imageUrl:"https://www.baidu.com/img/bd_logo1.png"
}
},