作者 jinglong
1 个管道 的构建 通过 耗费 0 秒

分享

... ... @@ -11,21 +11,32 @@
nonceStr: '{$data.nonceStr}',
signature: '{$data.signature}',
jsApiList: [
'updateAppMessageShareData',
'onMenuShareTimeline',
// 'updateTimelineShareData',
]
});
wx.ready(function () { //需在用户可能点击分享按钮前就先调用
wx.updateAppMessageShareData({
wx.onMenuShareTimeline({
title: title_title, // 分享标题
desc: url, // 分享描述
desc: title_title,
link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: '', // 分享图标
success: function (e) {
alert('成功');
wx_Share();
}
success: function () {
// 用户点击了分享后执行的回调函数
alert('分享成功1')
},
});
// wx.updateAppMessageShareData({
// title: title_title, // 分享标题
// desc: url, // 分享描述
// link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
// imgUrl: '', // 分享图标
// success: function (e) {
// alert('成功');
// wx_Share();
// }
// });
// wx.updateTimelineShareData({
// title: title_title, // 分享标题
// link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
... ...