小程序分享好友和群聊
小程序分享好友群聊实现方式如下:
<button open-type='share' class='shareFri' bindtap='onShareAppMessage'>发给群聊或好友</button>
这里必须是button按钮,只有button按钮才有share属性啦
js代码如下:
onShareAppMessage: function () {
const self = this;
return {
title: 'xxx',
path: "地址",
success: function(res) {
wx.showToast({
title: '转发成功',
duration: 1000
})
},
fail: function(res) {
wx.showToast({
title: '转发失败',
duration: 1000
})
}
}
}
经过这样的书写,分享好友和群聊就实现啦!

浙公网安备 33010602011771号