微信小程序取消分享的两种方式

1. 注释onShareAppMessage函数

Page({

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

}
})

2. onload函数中加入wx.hideShareMenu({})函数

Page({

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

})
},
})

posted @ 2020-02-07 10:03  阿浪阿浪  阅读(4663)  评论(0)    收藏  举报