如何维护每个 ngFor 项目的按钮状态
Posted
技术标签:
【中文标题】如何维护每个 ngFor 项目的按钮状态【英文标题】:how to maintain state of button for each ngFor item 【发布时间】:2019-07-18 12:25:54 【问题描述】:我在我的 Angular 项目中集成 Trello。每张卡片都有一个开始计时器按钮。假设当用户单击卡片 A 的开始计时器按钮时,该按钮将替换为结束任务按钮。问题在这里结束按钮出现在所有卡片中。 如果我单击卡 A 的开始按钮计时器。该按钮应仅在卡 A 上替换。它不应在所有卡上更改
在第 1 节的上图中,当我单击该按钮时,它会替换为第 2 节中显示的结束计时器按钮,但是当我为模式窗口计时并单击另一张卡片时,它会显示结束计时器按钮也在另一张卡上。预计如果我点击卡 A 按钮,它应该只替换卡 A 上的卡 B 它应该显示开始计时器按钮。
提前谢谢你。
以下是我的代码 -
startTimer()
this.startFlag = !this.startFlag;
activityModal(id, name, due)
jQuery("#activityModal").modal('show');
this.cardDueDate = due;
this.mainCardName = name;
this.mainCardId = id;
// card iterates
<div class="row justify-content-center no-gutters overflow">
<section class="list" *ngFor="let item of mainListArr" id="item.id">
<header>item.name</header>
<article class="card" *ngFor="let card of item.cards">
<a (click)="activityModal(card.id, card.name,card.due)">
<header>card.name</header>
<div class="detail badge is-due-complete" *ngIf="card.due != null">
<i class="badge-icon fa fa-clock-o" aria-hidden="true"></i>
<span class="badge-text">card.due | date : 'MMM dd'</span>
</div>
</a>
</article>
</section>
</div>
// modal popup code
<!-- Modal for activity -->
<div class="modal fade" id="activityModal" data-backdrop="static" tabindex="-1" role="dialog" aria-labelledby="activityModal"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" *ngIf="mainCardName !== ''">mainCardName</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" (click)="closeActivityModal()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-9">
some code here
</div>
<div class="col-md-3 text-center vertical-center">
<small><u>Card Actions</u></small>
<button class="btn btn-action mar-t-05" (click)="startTimer()" *ngIf="startFlag">Start Timer</button>
<button class="btn btn-action mar-t-05" (click)="endTimer()" *ngIf="!startFlag">End Timer</button>
</div>
</div>
</div>
</div>
</div>
</div>
【问题讨论】:
【参考方案1】:这是因为每张卡片中的按钮都有相同的变量来显示或隐藏开始和结束计时器。
最简单的方法是在 startTimer 和 endTimer 函数中发送卡片的索引值,并使用该索引为每张卡片设置唯一的标志值。
【讨论】:
以上是关于如何维护每个 ngFor 项目的按钮状态的主要内容,如果未能解决你的问题,请参考以下文章