ion-nav-bar不显示任何内容

Kan*_*nav 1 html css angularjs ionic-framework

我使用创建了一个导航栏ionic-nav-bar.添加了一个h1带有类的元素title.但它没有显示任何东西.

这是我的代码

<ion-pane>
    <ion-nav-bar class="bar-stable">
        <h1 class="title">Ionic Blank Starter</h1>
    </ion-nav-bar>
    <ion-content>
    </ion-content>
</ion-pane>
Run Code Online (Sandbox Code Playgroud)

但是,这是有效的:

<ion-pane>
    <ion-header-bar class="bar-stable">
        <h1 class="title">Ionic Blank Starter</h1>
    </ion-header-bar>
    <ion-content>
    </ion-content>
</ion-pane>
Run Code Online (Sandbox Code Playgroud)

那我做错了什么?

小智 24

 <ion-nav-bar class="bar-positive">
 <ion-nav-title>hello</ion-nav-title>
 </ion-nav-bar>
Run Code Online (Sandbox Code Playgroud)

这将解决您的问题.