这篇文章主要介绍了微信小程序转发事件实现解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
和生命周期是同级,在.js文件里面设置
// 分享按钮
onShareAppMessage: function () {
return {
title: '前端伪大叔',
path: "/pages/list/list",
imageUrl: "http://huoche.7234.cn/images/jb51/5cynmzhm2sy.jpg"
}
}
点击按钮分享
// 需要加上open-type属性;
<button open-type="share">点击分享</button>
onShareAppMessage: function () {
return {
title: '前端伪大叔',
path: "/pages/list/list",
imageUrl: "http://huoche.7234.cn/images/jb51/5cynmzhm2sy.jpg"
}
}