需求:微信网页开发,用户可以点击页面中的分享按钮调起分享功能。config已完成jsapi的注册,现在通过点击事件调用jssdk中的分享方法无效
share(item) {
wx.onMenuShareTimeline({
title: '我的分享',
desc: item.content,
link: document.URL + '?uuid=' + item.activity_uuid,
imgUrl: item.img, // 分享图标
success: ()=> {
this.handleShare(item);
}
})
},
这个API只是监听右上角的分享功能,并不是会唤起分享功能;
微信jssdk并不支持自定义分享按钮
参考:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
button open-type=“share”