小程序
小游戏
企业微信
微信支付
扫描小程序码分享
updateAppMessageShareData在pc端分享没有自定义描述,只有一个链接如下。debug开启后,没有调用updateAppMessageShareData改方法,手机上是正常的
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
PC端是可以设置的,关键代码在于jssdk准备放弃的onMenuShareAppMessage方法 这可能是微信的一个bug,在jweixin-1.4.0.js以上版本updateAppMessageShareData都对pc端无效,但是onMenuShareAppMessage在pc端有效,建议两个方法都调用,例如: wx.ready(function () { wx.updateAppMessageShareData(shareData); wx.updateTimelineShareData(shareData); try{ wx.onMenuShareAppMessage(shareData) wx.onMenuShareTimeline(shareData) } catch(e){} });
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,pc端暂不支持。
你看下你的配置对不对?还是用了第三方的?
onShareAppMessage: function (res) { if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } console.log("点击分享") wx.showShareMenu({ withShareTicket: true }); let sharePath = ""; let shareObj = { title: this.title }; console.log(this.title) return shareObj; }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,pc端暂不支持。
你看下你的配置对不对?还是用了第三方的?
onShareAppMessage: function (res) { if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } console.log("点击分享") wx.showShareMenu({ withShareTicket: true }); let sharePath = ""; let shareObj = { title: this.title }; console.log(this.title) return shareObj; }