当前位置:主页 > 网页前端 > JavaScript代码 >

微信小程序动态添加分享数据

时间:2020-10-24 11:53:30 | 栏目:JavaScript代码 | 点击:

微信小程序分享效果:

js代码:

page({

 /**
 * 用户点击分享按钮或右上角分享
 */
 onShareAppMessage: function (res) {
 var that = this;
 return {
  title: that.data.common.act_name,
  desc: that.data.common.introduction,
  path: '/pages/xiangqing/xiangqing?id='+that.data.id,
  success: function (res) {
  // 转发成功
  },
  fail: function (res) {
  // 转发失败
  }
 }
 }

})

您可能感兴趣的文章:

相关文章