return {
title: ‘拼车出行,绿色环保,方便你、我、他!’,
desc: ‘拼车出行,绿色环保,方便你、我、他!’,
path: ‘/pages/index/index?uid=’ + uid+’&from=index’,
success: function (res) {
if (res.shareTickets) {
//res.shareTickets 可以取到
wx.getShareInfo({
shareTicket: res.shareTickets[0],
success: function (recc) {
console.log(“群名:” + recc.roomTopic);
that.actionRecord(0, ‘share’, “分享首页-”+recc.roomTopic);
},fail: function(err){
//每次都到这里,提示errMsg:“getShareInfo:fail”
console.log(err)
}
})
}
},
}