小程序分享好友和群聊

小程序分享好友群聊实现方式如下:

<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
 })
 }
 }
 }

经过这样的书写,分享好友和群聊就实现啦!

原文地址:https://www.cnblogs.com/good-qinqin/p/9104767.html