微信小程序 —— 转发分享(只能转发好友)

通过给 button 组件设置属性 open-type=“share”,可以在用户点击按钮后触发 Page.onShareAppMessage 事件,如果当前页面没有定义此事件,则点击后无效果
html:

	// button 标签上添加  open-type='share': 触发用户转发

js:
使用小程序onShareAppMessage函数

 onShareAppMessage: function (e) {
          return {
            title: '我要吃免费牛排,就差你了!',
            path: 'pages/index/index?freeOrderId=' + this.data.orderId,
            imageUrl: 'https://img.ibeef.vip/miniProgram/assistance/shareImg.png',
          }
        }
      }

你可能感兴趣的:(微信小程序)