Использовать * ngДля структурной директивы
<ion-header>
<ion-toolbar>
<ion-title>
Application de Test
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content *ngFor="let infor of appInfo">
<h1>{{infor.title}}</h1>
<ion-text>{{infor.description}}</ion-text>
</ion-content>
Дается еще один длинный способ получения данных массива.
heroes = ['Windstorm', 'Bombasto', 'Magneta', 'Tornado'];
myHero1 = this.heroes[0];
myHero2 = this.heroes[1];
myHero3 = this.heroes[2];
myHero4 = this.heroes[3];
.html файл
<p [innerText]="myHero1"></p>
<p [innerText]="myHero2"></p>
<p>{{myHero3}}</p>
<p>{{myHero4}}</p>