小程序的分享功能

小程序的分享功能

<button open-type="share">分享</button>
点击此按钮后会触发(父组件的):
//系统自带方法
onShareAppMessage: function (event) {
  const blog = event.target.dataset.blog;
  return{
    title: blog.content,//转发标题
    path: `/pages/blog-comment/blog-comment?blogId=${blog._id}`//转发路径,跳转路径
    //imgUrl:""
  }
}
 
event={
  from: "button",
  target:{
    dataset:{...},//可以同过dataset传递参数
    id: "",
    offsetLeft: 160
    offsetTop: 218
  }
}
原文地址:https://www.cnblogs.com/baixinL/p/11989364.html