从微信对话框里分享出来是个链接,没有自定义信息。
http://www.thhdsh.com/ng/pre/hwyy-grow/index.html 从微信对话框里分享出来是个链接,没有自定义信息。 debug都示示验证都正常 手机 华为P30 ,8.0.19 APPID:wxee5fb2f3f017322e 代码 let configData = { // debug: true, appId: this.wxConfigData.wx_app_id, // 必填,公众号的唯一标识 timestamp: this.wxConfigData.timestamp, // 必填,生成签名的时间戳 nonceStr: this.wxConfigData.nonce_str, // 必填,生成签名的随机串 signature: this.wxConfigData.sign, // 必填,签名 jsApiList: [ 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'updateTimelineShareData', 'updateAppMessageShareData', 'hideShareMenu', 'showShareMenu', 'hideOptionMenu', 'showOptionMenu' ], openTagList: ['wx-open-launch-weapp', 'wx-open-launch-app'] }; // let _this = this; wx.config(configData); wx.ready(function() { console.log('ready'); let title = '西游取经模拟器,从未见过如此脑洞'; let desc = '取经取到外太空,这取经好难啊!'; let link = location.href; let imgUrl = 'https://www.thhdsh.com/ng/prod/hwyy-grow-pic/share.png'; // onMenuShareAppMessage updateAppMessageShareData wx.checkJsApi({ jsApiList: [ 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'updateTimelineShareData', 'updateAppMessageShareData', 'hideShareMenu', 'showShareMenu', 'hideOptionMenu', 'showOptionMenu' ], // 需要检测的JS接口列表,所有JS接口列表见附录2, success: function(res) { console.log(res, 'checkJsApi'); } }); wx.hideOptionMenu(); wx.updateAppMessageShareData({ title, // 分享标题 desc, // 分享描述 link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl, // 分享图标 success: function(res) { console.log(res, 'share success------1') } }); //分享到朋友圈 onMenuShareTimeline updateTimelineShareData wx.updateTimelineShareData({ title, // 分享标题 link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl, // 分享图标 success: function(res) { } }); }); wx.error(function(res) { console.log('err', res); }); }) .catch(error => { console.log(error, 'reward'); }) .finally(() => { // Indicator.close(); });