Ionic - 如何删除标题?

时间:2022-09-18 23:00:52

How to remove header title in ionic? I want to remove login title inside my header.

如何删除离子中的标题标题?我想删除标题中的登录标题。

my code

我的代码

<ion-view  hide-back-button="true">
  <ion-nav-buttons side="left">
    <button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
  <h1 class="title"><img class="title-image" src="img/header_logo.png" /></h1>
   </ion-nav-buttons>
  <ion-content class="has-header">
    <ion-list>
      <ion-item ng-repeat="playlist in playlists" href="#/app/home/{{playlist.id}}">
        {{playlist.title}}
      </ion-item>
    </ion-list>
  </ion-content>
</ion-view>

Current issue

当前的问题

Ionic  - 如何删除标题?

2 个解决方案

#1


8  

How about this:

这个怎么样:

<ion-view title=''>

Put any html content inside title and it will re rendered as html.

将任何html内容放在标题内,它将重新呈现为html。

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

#2


9  

Add this to your view

将其添加到您的视图中

<ion-view hide-nav-bar="true" hide-back-button="true" view-title="welcome">

#1


8  

How about this:

这个怎么样:

<ion-view title=''>

Put any html content inside title and it will re rendered as html.

将任何html内容放在标题内,它将重新呈现为html。

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

#2


9  

Add this to your view

将其添加到您的视图中

<ion-view hide-nav-bar="true" hide-back-button="true" view-title="welcome">