1. 程式人生 > >微信小程序之分享,動態添加分享數據

微信小程序之分享,動態添加分享數據

tle images nsh 動態 fail spa tro blog ppm

1、效果:

技術分享

2、.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) { // 轉發失敗 } } } })

微信小程序之分享,動態添加分享數據