小程序之 转发/分享

//转发功能 
  onShareAppMessage: function () {
    return {
      title: '这里填写小程序的名字,如果不填写会默认当前小程序的名字',
      path: '这里填写分享出来的地址,如果不填写会默认当前页面'
    }
  },

这个和data是同级的,更多参数

详情API:https://developers.weixin.qq.com/minigame/dev/api/share/wx.onShareAppMessage.html?search-key=onShareAppMessage

猜你喜欢

转载自www.cnblogs.com/liancat/p/9633099.html