goes behindin Ionic
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了goes behindin Ionic相关的知识,希望对你有一定的参考价值。
<ion-header>
<ion-navbar>
<ion-title>Physics</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding has-header contentTop="200px">
<ion-list class="chapter-list">
<button ion-item no-padding *ngFor="let chapterList of chapterLists" (click)="chapterListItemClk(event)" no-border> {{ chapterList.video_name }} <img src="{{chapterList.video_icon}}" item-left alt=""> </button>
</ion-list>
</ion-content>
这是我的代码,其中<ion-content>
隐藏在<ion-header>
背后。我的离子版本是3.19.1。
如何解决这个问题。我也尝试过has-header。
答案
尝试在ion-content标签内添加<ion-grid></ion-grid>
<ion-header>
<ion-navbar>
<ion-title>Physics</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding has-header contentTop="200px">
<ion-grid>
<ion-list class="chapter-list">
<button ion-item no-padding *ngFor="let chapterList of chapterLists" (click)="chapterListItemClk(event)" no-border> {{ chapterList.video_name }} <img src="{{chapterList.video_icon}}" item-left alt=""> </button>
</ion-list>
</ion-grid>
</ion-content>
以上是关于goes behindin Ionic的主要内容,如果未能解决你的问题,请参考以下文章
ionic 实现类似于JQuery的AutoComplete
在 Ionic 中成功更新后,MobileFirst 8.0 Direct Update 不更新 UI