欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

uniapp-转发功能

程序员文章站 2022-03-19 21:37:23
...

uniapp-转发功能

方法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"
  }
},

 

相关标签: uniapp