小程序
小游戏
企业微信
微信支付
扫描小程序码分享
使用官方提供的语法,跳转到微信圈子,但是发布的好物链接没有了,目前查不出来是什么原因,希望有人可以解答
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我自己来回复自己的帖子了
花了一天的时间,找了各种方法之后发现,使用api实现好物圈(微信圈子)分享的官方文档可能存在问题.
1.官方上是这样的https://wsad.weixin.qq.com/wsad/zh_CN/htmledition/order/html/document/method.part.html
按照文档的写法,分享出去是看不到分享的链接
正确的写法是这样
按钮 <button title="好物分享" @click="saveOpenBusinessView" /> 点击事件: saveOpenBusinessView () { if (wx.openBusinessView) { wx.openBusinessView({ businessType: 'friendGoodsRecommend', extraData: { product: { item_code: ExtConfig.shopId, //物品id 唯一 title: this.shareData.title, // 物品名称 image_list: this.shareData.image } }, success (res) { console.log('好物圈推送',res); }, fail (res) { wx.showToast({ title: '推荐失败', icon: 'none' }); } }); } else { wx.showToast({ title: '当前微信版本不支持推荐到好物圈', icon: 'none' }); } },
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
老妹,你这不行啊
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我自己来回复自己的帖子了
花了一天的时间,找了各种方法之后发现,使用api实现好物圈(微信圈子)分享的官方文档可能存在问题.
1.官方上是这样的https://wsad.weixin.qq.com/wsad/zh_CN/htmledition/order/html/document/method.part.html
按照文档的写法,分享出去是看不到分享的链接
正确的写法是这样
按钮 <button title="好物分享" @click="saveOpenBusinessView" /> 点击事件: saveOpenBusinessView () { if (wx.openBusinessView) { wx.openBusinessView({ businessType: 'friendGoodsRecommend', extraData: { product: { item_code: ExtConfig.shopId, //物品id 唯一 title: this.shareData.title, // 物品名称 image_list: this.shareData.image } }, success (res) { console.log('好物圈推送',res); }, fail (res) { wx.showToast({ title: '推荐失败', icon: 'none' }); } }); } else { wx.showToast({ title: '当前微信版本不支持推荐到好物圈', icon: 'none' }); } },
老妹,你这不行啊