问题:
我在指定了点击跳转的link=urlHopeInto 之后,分享到朋友圈中,其他人在朋友圈点击文章,进入的是分享时的页面,而不是分享时指定的link?
const urlHopeInto = this.taskShowHref;
wx.onMenuShareTimeline({
/*朋友圈 */
title: _this.taskShowName, // 分享标题
link: urlHopeInto, // 分享链接 动态获取任务中的原文链接。
imgUrl: _this.taskShowUrl, // 动态获取任务中的封面图片url
success: function () {
console.log('提交分享统计' + urlHopeInto)
_this.account(1);
// alert('成功');
// 用户确认分享后执行的回调函数1
},
cancel: function () {
alert('取消');
// 用户取消分享后执行的回调函数
},
complete: function (data) {
// 用户完成分享操作 但不一定进入onsuccess
// _this.account(1);//TODO 这个上线之前要关闭
console.log('用户完成分享ready-complete-' + data.errMsg)
},
trigger: function (data) {
console.log('link=' + urlHopeInto);
console.log('ready-trigger-----------' + data.errMsg)
},
});
求大神指导。。
https://mbd.baidu.com/newspag...
微信调整分享功能