解决方法
看看
Ionic tab documentation:
To hide the tabbar but still show the content,add the “tabs-item-hide” class.
所以你会改变这个:
<div class="tabs"> <a class="tab-item" href="#"> Home </a> ... </div>
对此:
<div class="tabs tabs-item-hide"> <a class="tab-item" href="#"> Home </a> ... </div>