微信小程序分享有两种形式:
第一种:微信小程序右上角分享按钮
第二种:按钮绑定点击分享
// 页面按钮设置传参按钮
<button open-type="share" class="i-btn">
立即邀请伙伴
</button>
// 设置分享方法
onShareAppMessage(res) {
if (res.from === 'button') {// 来自页面内分享按钮
console.log(res.target)
}
return {
title: '邀请伙伴',
path: '/pages/view/user/invite/accept?invite_code='+this.info.invitation_code
}
},
// 页面接收参数
onLoad(e) {
this.invite_code = e.invite_code || ''
if(e.invite_code) {
this.isShareStatus = true
}
}