关于微信小程序分享

399 阅读1分钟

直接上代码:

onShareAppMessage: function () {

var title = "分享“"+webSiteName+"”";
var path =""
if (this.data.categories && this.data.categories != 0)

{ title += "的专题:" + this.data.categoriesList.name; path = 'pages/jiudianjingdian/list?categoryID=' + this.data.categoriesList.id;

} else { title += "的搜索内容:" + this.data.searchKey;

  path = 'pages/list/list?search=' + this.data.searchKey;

}

return {
  title: title,
  path: path,
  success: function (res) {
    // 转发成功
  },
  fail: function (res) {
    // 转发失败
  }
}

},

title分享的标题

path分享的路径