小程序
小游戏
企业微信
微信支付
扫描小程序码分享
不用微信自带tabbar 自定义tabbar 用
wx.hideTabBar();
但是 自带tabber会随机出现在自定义tabbar底部
2 个回答
麻烦提供出现问题的机型和微信版本,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
App({
onLaunch: function () {
//隐藏系统tabbar
console.log("dfhdf")
//获取设备信息
this.getSystemInfo();
wx.setEnableDebug({
enableDebug:true
})
},
onShow: function () {
内容中可能包含密钥、AppSecret等私密参数,泄漏会有安全风险,请检查内容并确认。
这种格式的代码片段哈(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你是在 app.js里执行的 wx.hideTabBar() 吗?如果执行的时候,并不是在 tabbar页面,则无效。。
是的 但是 tabbar页面, 也会出现
你在tabbar页面的 onLoad里写,也会有隐藏不掉的情况?
我试试
麻烦提供出现问题的机型和微信版本,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
App({
onLaunch: function () {
//隐藏系统tabbar
wx.hideTabBar();
console.log("dfhdf")
//获取设备信息
this.getSystemInfo();
wx.setEnableDebug({
enableDebug:true
})
},
onShow: function () {
//隐藏系统tabbar
wx.hideTabBar();
},
这种格式的代码片段哈(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你是在 app.js里执行的 wx.hideTabBar() 吗?如果执行的时候,并不是在 tabbar页面,则无效。。
是的 但是 tabbar页面, 也会出现
你在tabbar页面的 onLoad里写,也会有隐藏不掉的情况?
我试试