1. 禁用分享
onLoad (option) {
wx.hideShareMenu({
success: function () {
console.log("成功隐藏分享按钮")
},
fail: function () {
console.log("隐藏分享按钮失败")
}
})
}
2.自定义分享
<button class="share-button" open-type="share"></button>
给button标签添加open-type="share"属性,在点击按钮时候自动触发页面内的onShareAppMessage函数
onShareAppMessage() {
return {
title: '这是分享标题',
path: '分享路径',
imageUrl: '封面图' //如果封面图为空 自动取当前页面截图
}
}
如果你只想在点击按钮是触发分享,这是可以禁用右上角...中的分享文章来源:https://www.toymoban.com/news/detail-739437.html
onLoad() {
wx.hideShareMenu({
menus: ["shareAppMessage"]
})
}
文章来源地址https://www.toymoban.com/news/detail-739437.html
到了这里,关于微信小程序分享(禁用分享,自定义分享禁用右上角...分享)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!