微信小程序分享功能

// pages/index/index.wxml
<button data-name="shareBtn" open-type="share">分享</button>
 
// pages/index/index.js
Page({

  /**
   * 页面的初始数据
   */
  data: {

  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {

  },


  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {
    return{
      title:'越分享越快乐',
      path:"/pages/index/index",
      imageUrl: "/pages/images/1.png"
    };
  }
})

猜你喜欢