我正在使用角度。我创建了自定义秒表。我正在管理每个 ngFor 项目的开始/结束按钮。但无法为每个 ngFor 项目管理唯一的计时器。
在上图中,每个项目都有不同的开始/结束按钮。当我单击项目 A 的开始计时器按钮时,两个项目的计时器都会启动。
public seconds = 0; minutes = 0; hours = 0; t; h1 = "00:00:00";
startTask (item) {
if(item.start) {
item.end = true;
item.start= false;
}
this.timer()
}
EndTask (item) {
if(item.end) {
item.end = false;
item.start= true;
}
clearTimeout(this.t);
}
add() {
this.seconds++;
if (this.seconds >= 60) {
this.seconds = 0;
this.minutes++;
if (this.minutes >= 60) {
this.minutes = 0;
this.hours++;
}
}
this.h1 = (this.hours ? (this.hours > 9 ? this.hours : "0" + this.hours) : "00") + ":" + (this.minutes ? (this.minutes > 9 ? this.minutes : "0" + this.minutes) : "00") + ":" + (this.seconds > 9 ? this.seconds : "0" + this.seconds);
this.timer();
}
timer() {
this.t = setTimeout(() => {
this.add()
}, 1000);
}
reset() {
this.h1 = "00:00:00";
this.seconds = 0;
this.minutes = 0;
this.hours = 0;
}
<div class="row no-gutters">
<div class="card width hr" *ngFor="let item of allUserTaskArr">
<div class="card-header">
<span>{{item.due | date}}</span>
<span class="float-right font-weight-bold">{{h1}}</span>
</div>
<div class="card-body pad-125">
<div class="row no-gutters">
<div class="col-md-12">
{{item.name}}
<div class="float-right">
<button class="btn btn-info mar-l-r-0-5" *ngIf="item.start" (click)="startTask(item)">Start</button>
<button class="btn btn-danger mar-l-r-0-5" *ngIf="item.end" (click)="EndTask(item)">End</button>
</div>
</div>
</div>
</div>
</div>
</div>
我希望当我单击项目 A 的开始按钮时。计时器应该为项目 A 启动。当项目 A 的计时器启动并且我单击项目 B 的开始按钮时,前一个计时器应该暂停并且新计时器应该启动。其实,我想保持时间。