离子视图标题中的图像

时间:2016-07-10 22:07:35

标签: javascript ionic-framework ionic-view

我知道这可以在离子视图中使用侧边菜单:

<ion-view view-title='<img class="title-image" src="img/my_logo.png" />'>

这会将图像放在导航栏中,而类标题图像会将其放在我想要的位置。到目前为止一切都很好。

问题在于,类似这样的内容会成为浏览器标签上显示的页面标题:

<img class="title-image" ...

- 这不太酷。

有没有办法将图像放到导航栏上而不会将其捏入标题?

2 个答案:

答案 0 :(得分:6)

<ion-view>
    <ion-nav-title>
        <img class="title-image" src="img/my_logo.png" />
    </ion-nav-title>
    <ion-nav-buttons side="left">
        <button class="button" ng-click="doSomething()"></button>
    </ion-nav-buttons>
    <ion-content>
       the view content
    </ion-content>
</ion-view>

感谢Abhijit how to add a logo to header -bar in ionic

答案 1 :(得分:0)

这可能是愚蠢的,但有' ......最后必须关闭。