1. 程式人生 > >【微信小程式】 隱藏小程式 導航欄/TabBar

【微信小程式】 隱藏小程式 導航欄/TabBar

方法有三:

1、頁面不存在於app.json中的 tabBar.list

2、使用wx.navigateTo 跳轉到新頁面

3、 微信基礎庫1.9.0開始支援api wx.hideTabBar/wx.showTabBar

wx.hideTabBar({
    animation:true //是否需要過渡動畫
})


wx.showTabBar({
    animation:true //是否需要過渡動畫
})