如何在函数后返回数组?

问题描述 投票:0回答:1

我设法让我的阵列在控制台上工作。

当我单击按钮时,数组显示在控制台上,但不在我的 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>

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

javascript angular ionic2
1个回答
1
投票

您应该使用

ngFor
指令来显示值

 <p *ngFor="let r of random">{{r}}</p>
© www.soinside.com 2019 - 2024. All rights reserved.