微信配置: <script> wx.config({ debug: false, appId: '{{ appid }}', timestamp: '{{ timestamp }}', nonceStr: '{{ noncestr }}', signature: '{{ hash }}', jsApiList: [ //去掉別的傳播類的介面 'hideOptionMenu', 'scanQRCode' ] }); wx.ready(function() { wx.hideOptionMenu();//必須呼叫下 隱藏這些功能 wx.hideMenuItems({ menuList: [ 'menuItem:favorite', 'menuItem:copyUrl', 'menuItem:openWithQQBrowser', 'menuItem:openWithQQBrowser', 'menuItem:openWithSafari', 'menuItem:share:email', 'menuItem:share:facebook' ] // 要隱藏的選單項,只能隱藏“傳播類”和“保護類”按鈕,所有menu項見附錄3 }); }); wx.error(function(res){ alert(res.resultStr); }) </script>
- 注:微信開發debug引數,當在除錯階段的時候,必須要debug引數必須要設定為true。