mpvue点击按钮转发引起的坑

项目中用任务得金币的功能,用户通过转发分享,被分享的用户登录并且浏览后,分享的用户能得到相应的金币,并且点击不同的列表,分享的path,title,以及图片也是不一样的,引发的问题,我在onShareAppMessage回调函数中拿不到数据

原生小程序可通过一下方法进行解决

onShareAppMessage(res) {
    console.log(res, '=====>>>>>');
    if (res.from !== 'button') return false;
    return {
      title: this.shareTitle,
      path: this.pathShare,
      imageUrl: this.sharePicture,
    };
  },

我们通过data-a传递12过来,可以在onShareAppMessage回调中,使用,res.target.dataset.a可以拿到此时的a,可以进行相应的操作。如下图所示:

mpvue点击按钮转发引起的坑_第1张图片

在mpvue的使用中,犯了一个都经常犯的错误,我是动态传递的数据,所以给添加的点击事件,通过子组件传递给父组件,进行一下操作。

最终的解决办法如下,去掉点击事件,通过动态绑定的形式进行传递,在onShareAppMessage进行获取,如下代码所示:

onShareAppMessage(res) {
    console.log(res, '=====>>>>>');
    if (res.from !== 'button') return false;
    this.shareBtn(res.target.dataset.a);
    return {
      title: this.shareTitle,
      path: this.pathShare,
      imageUrl: this.sharePicture,
    };
  },

这样我们就可以通过res.target.dataset.a获取到数据,并传递给shareBtn函数,进行最终的处理即可。

你可能感兴趣的:(mpvue,小程序)