你好, 在用户点击“分享至好物圈”按钮后,分享信息中只有product内容,我还希望添加一些其他信息(比如增加一张包含部分用户信息的图片)。
请问现在有怎样的功能吗?在extraData里的其他属性?
wx.openBusinessView({ businessType: 'friendGoodsRecommend' , extraData: { //目前只有product属性吗? product: { item_code: session.wid, // title: “测试测试”, 在这里设置的信息不会影响最终分享的结果 // image_list: [“不影响最终结果”] } }, success: function (res) { console.log(res); }, fail: function (res){ console.log(res); } }) }, |
谢谢!