赞
踩
项目开发过程中的需求是:微信小程序页面分享到个人或者群聊,禁止个人或群聊中长按转发。
实现方式:
- onLoad: function (options) {
- //屏蔽右上角分享到群、好友或朋友圈功能
- wx.hideShareMenu()
- }
- onShareAppMessage(from) {
- //分享后更新转发属性为私密
- wx.updateShareMenu({
- withShareTicket: false,
- isPrivateMessage: true,//设置为私密
- })
- }