使用角度2 /离子2在选择框中显示页码

时间:2016-12-28 08:12:46

标签: angular ionic2

我使用API​​调用获取结果集的页数。但我想使用角度2 /离子2显示选择框内的页面列表数。

预期输出为:

1,2,3,4,5,6-

 export class TransactionsPage {
      perPageValues:any; 

     constructor(){
       this.perPageValues= 6;
     }
    }

我尝试了以下方式,但没有工作。

视图

<ion-item>
    <ion-label>Page</ion-label>
    <ion-select [formControl]="page">
      <ion-option  *ngFor="#perPage of perPageValues" [value]="perPage">{{perPage}}</ion-option>           
     </ion-select>
</ion-item>

1 个答案:

答案 0 :(得分:0)

我通过以下方式找到了解决方案,

this.pageValues = Array.from(Array(data.page.totalPages),(x,i)=>i+1);