小程序
小游戏
企业微信
微信支付
扫描小程序码分享
代码片段: https://developers.weixin.qq.com/s/2fDuSqma7Ih0
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我写了个测试项目,有这块的代码逻辑,如果没有解决你可以拉取代码看下:
项目地址:https://gitee.com/zxyuns/weather.git
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
page.json里有配置吗?
Component({ pageLifetimes: { show() { if (typeof this.getTabBar === 'function' && this.getTabBar()) { this.getTabBar().setData({ selected: 0 }) } } } }) 要放组件生存周期里面
在自定义的 tabBar 的页面【pagePath】内是可以 this.getTabBar() 对 tabBar 进行隐藏/显示的。
但是在其他页面 【非pagePath 】,this.getTabBar() 为 null, 无法正确将 tabbar 隐藏,使用 wx.hideTabBar() 也是无效的。请问这个有什么解决方案吗?
通过 wx.navigateTo({ 方式跳转。
url:'/index/login/index',
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我写了个测试项目,有这块的代码逻辑,如果没有解决你可以拉取代码看下:
项目地址:https://gitee.com/zxyuns/weather.git
根目录custom-tab-bar文件夹里的文件之前是tabbar.*
改成index.*就好了
page.json里有配置吗?
Component({ pageLifetimes: { show() { if (typeof this.getTabBar === 'function' && this.getTabBar()) { this.getTabBar().setData({ selected: 0 }) } } } }) 要放组件生存周期里面
在自定义的 tabBar 的页面【pagePath】内是可以 this.getTabBar() 对 tabBar 进行隐藏/显示的。
但是在其他页面 【非pagePath 】,this.getTabBar() 为 null, 无法正确将 tabbar 隐藏,使用 wx.hideTabBar() 也是无效的。请问这个有什么解决方案吗?
通过 wx.navigateTo({ 方式跳转。
url:'/index/login/index',
})