微信小程序取消分享的两种方式
时间:2020-02-07 10:54:33
收藏:0
阅读:110
1. 注释onShareAppMessage函数
Page({
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
2. onload函数中加入wx.hideShareMenu({})函数
Page({
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.hideShareMenu({
})
},
})
评论(0)