小程序的页面分享,在onShareAppMessage方法中进行设置
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
return {
title:'你好呀', //转发时展示的标题
path:'/pages/about/about', //点击小程序时展示的页面
//分享时展示的图片,可以是本地图片,也可以是网络图片
imageUrl:'https://images.pexels.com/photos/2110449/pexels-photo-2110449.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
}
}
分享按钮
通过给按钮设置open-type="share",点击后会直接弹出转发页面
<button size="mini" open-type="share">分享</button>
网友评论