微信公众号网页如何确定当前用户是否点击了分享?
wx.onMenuShareAppMessage({
title: '来自安然失笑i的分享', // 分享标题
desc: '测试分享功能', // 分享描述
link: location.href.split('#')[0], // 分享链接
imgUrl: 'http://thirdwx.qlogo.cn/mmopen/vi_32/ZQcS597s6ugzqlgdtfjYFIxoMOofzf7aKqg00ZoFLaEyL9mFUP3SAvao9vhrVRgJJ9gedIjnNMfMQev50Oibavw/132', // 分享图标
type: 'link', // 分享类型,music、video或link,不填默认为link
success: function () {
alert("分享成功");
$.ajax({
type : 'post',
url : '{:url("index/test")}',
data : {},
dataType : 'json',
success : function (res) {
console.log(res);
}
})
},
cancel: function () {
alert("未分享!");
console.log('分享失败');
}
});