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

调试分享

... ... @@ -520,5 +520,5 @@ class LoginController extends HomeBaseController
$postModel->where('id', $article_id)->setInc('post_share_wx', 1);
$this->apiResponse(1, '分享成功!');
}
}
... ...
... ... @@ -11,21 +11,32 @@
nonceStr: '{$data.nonceStr}',
signature: '{$data.signature}',
jsApiList: [
'updateAppMessageShareData',
'updateTimelineShareData',
'onMenuShareTimeline',
// 'updateTimelineShareData',
]
});
// wx.ready(function () { //需在用户可能点击分享按钮前就先调用
wx.updateAppMessageShareData({
title: title_title, // 分享标题
desc: url, // 分享描述
wx.ready(function () { //需在用户可能点击分享按钮前就先调用
wx.onMenuShareTimeline({
title: title_title, // 分享标题
desc: url,
link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: '', // 分享图标
success: function (e) {
alert('成功');
wx_Share();
}
imgUrl: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1548211804&di=d4e593085193f11411c5acba54fca29d&imgtype=jpg&er=1&src=http%3A%2F%2Fg.hiphotos.baidu.com%2Fzhidao%2Fwh%253D450%252C600%2Fsign%3D2a72651e33fa828bd17695e7c82f6d02%2Fcb8065380cd791230191756fad345982b2b780bc.jpg', // 分享图标
success: function () {
// 用户点击了分享后执行的回调函数
alert('分享成功')
},
});
// 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安全域名一致
... ... @@ -36,7 +47,7 @@
// alert('cheng')
// }
// });
// });
});
wx.error(function (res) {
// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
});
... ...