Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

First look at my code which is complete here:

https://stackblitz.com/edit/test-trainin-2-gv9glh?file=src%2Fapp%2Fapp.component.html

When you press the 'Go' button you will see a timer that starts counting the seconds. I just want to click Go to count the seconds to click the row - card. Check function:

  startTimerForSingleTraining(j) {
    this.selectedTrainingIndex = this.selectedTrainingIndex === j ? null : j;
    // selectedTrainingIndex
    console.log(j);
    this.countDownForSingleStartTraining = timer(0, this.tick).subscribe(
      () => ++this.counterForSingleTrainingStart
    );
  }

and in html:

    <div class="button-absolute-page">
      <button
      class="btn btn-primary"
      (click)="finishedTraining(training)"
       (click)="startTimerForSingleTraining(j)"
       >
        Go
    </button>
   </div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...