微信小程序 底部导航 tabbar能不显示吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 底部导航 tabbar能不显示吗相关的知识,希望对你有一定的参考价值。

参考技术A

可以啊,在app.json里可以啊,在app.json里面把tabBar配置项去掉就可以了

本回答被提问者采纳

微信小程序添加底部自定义导航栏(tabBar)

tabBar参数说明参考: 官网文档

具体配置:

1、在app.json中添加你的自定义导航栏信息(名字,点击前图片,点击后图片,要跳转的界面等等)

注意事项:tabBar最多五个

 

参考示例:

技术图片
"tabBar": {
    "color": "#8a8a8a",
    "selectedColor": "#937bf5",
    "list": [
      {
        "iconPath": "images/tabbar/index.png",
        "selectedIconPath": "images/tabbar/index_active.png",
        "pagePath": "pages/index/index",
        "text": "首页"
      },
      {
        "iconPath": "images/tabbar/near.png",
        "selectedIconPath": "images/tabbar/near_active.png",
        "pagePath": "pages/near/near",
        "text": "附近"
      },
      {
        "iconPath": "images/tabbar/message.png",
        "selectedIconPath": "images/tabbar/message_active.png",
        "pagePath": "pages/message/message",
        "text": "消息"
      },
      {
        "iconPath": "images/tabbar/user.png",
        "selectedIconPath": "images/tabbar/user_active.png",
        "pagePath": "pages/user/user",
        "text": "我的"
      }
    ]
  }
View Code

 

以上是关于微信小程序 底部导航 tabbar能不显示吗的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 跳转页面 就没有底部导航栏 怎么办?

微信小程序把玩tabBar底部导航

微信小程序之如何自定义底部tabbar导航(转)

微信小程序开发,导航栏右边的按钮怎么设置

微信小程序[电商]-Tabbar 实现底部导航栏

微信小程序添加底部自定义导航栏(tabBar)