通过隐藏默认菜单项里的“分享到微信”、“分享到盆友圈”等分享类操作项, 禁止用户将企业微信应用的页面分享出去。
1.先查阅官方文档:
企业微信API使用说明 https://work.weixin.qq.com/api/doc/90000/90136/90514
2.按照官方介绍,下载jweixin-1.2.0.js,引入
import wx from '../assets/js/jweixin-1.2.0.js';3.从服务端获取以下应用信息:
appId timestamp nonceStr signature
tip:需要确保以上(尤其是signature)信息正确。
4.将要隐藏的菜单项加入jsApiList,在ready回调中隐藏:
wx.config({ beta: true, debug: false, appId: this.appId, timestamp: this.timestamp, nonceStr: this.nonceStr, signature: this.signature, jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareWechat', 'shareAppMessage' ] }); wx.ready(function() { wx.hideOptionMenu(); }); wx.error(function(res) { });tip:debug默认开启,便于查看出错信息(比如:invalid signature等),调试完成后,设为false。
写完啦,(*^▽^*)