如何在函数后返回数组?

时间:2017-05-03 22:00:00

标签: javascript angular ionic2

我设法让我的数组在控制台上工作。

当我点击按钮时,数组显示在控制台上,但不在我的html上。

TS:

jogar(){
 for(var u=0;u<6;u++){        
     this.y = Math.ceil(Math.random()*59+1);
     this.random.push(this.y);           
    };
};

HTML:

<ion-card-content>        
    <button ion-button color="secondary" (click)="jogar()">Jogar</button>
    <p>{{random}}</p>        
</ion-card-content>

我怎样才能让它发挥作用?

1 个答案:

答案 0 :(得分:1)

您应该使用ngFor指令来显示值

 <p *ngFor="let r of random">{{r}}</p>