我设法让我的阵列在控制台上工作。
当我单击按钮时,数组显示在控制台上,但不在我的 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>
我怎样才能让它发挥作用?
您应该使用
ngFor
指令来显示值
<p *ngFor="let r of random">{{r}}</p>