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

调试分享

... ... @@ -5,39 +5,27 @@
var url = window.location.href;
var title_title = $(document).attr('title');
wx.config({
debug: false,
debug: true,
appId: '{$data.appId}',
timestamp: '{$data.timestamp}',
nonceStr: '{$data.nonceStr}',
signature: '{$data.signature}',
jsApiList: [
'onMenuShareTimeline',
'updateAppMessageShareData',
// 'updateTimelineShareData',
]
});
wx.ready(function () { //需在用户可能点击分享按钮前就先调用
wx.onMenuShareTimeline({
title: title_title, // 分享标题
desc: url,
wx.updateAppMessageShareData({
title: title_title, // 分享标题
desc: url, // 分享描述
link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
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('分享成功')
imgUrl: '', // 分享图标
success: function (e) {
alert('成功');
wx_Share();
},
}
});
// 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安全域名一致
... ...