获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
微信公众号内,非小程序,第一次进入一切正常,可以执行,刷新之后,又重新展示出来了非基础按钮
微信公众号中ios页面刷新后不执行wx.hideAllNonBaseMenuItem();wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: this.wxConfig.appId, // 必填,公众号的唯一标识 timestamp: this.wxConfig.timestamp, // 必填,生成签名的时间戳 nonceStr: this.wxConfig.nonceStr, // 必填,生成签名的随机串 signature: this.wxConfig.signature, // 必填,签名 jsApiList: [ "getLocation", "scanQRCode", "hideMenuItems", "closeWindow", "hideAllNonBaseMenuItem" ] // 必填,需要使用的JS接口列表 }); wx.ready(() => { console.log("加载jssdk,禁用menu"); wx.hideAllNonBaseMenuItem(); });
2021-05-20