gpt4 book ai didi

angular - 使用 ngFor 时删除最后一项之后的分隔线

转载 作者:太空狗 更新时间:2023-10-29 17:42:51 24 4
gpt4 key购买 nike

我正在使用这段代码来显示多个位置:

<div class="location" *ngFor="let item of location_array">
{{item}} <hr>
</div>

这会导致所有位置由水平线分隔。如何编辑它以获得完全相同的结果,但没有最后一条水平线?

最佳答案

使用 last*ngFor 提供连同 *ngIf在你的 <hr> :

<div class="location" *ngFor="let item of location_array; let lastItem = last;">
{{item}} <hr *ngIf="!lastItem">
</div>

这是一个StackBlitz Demo .

关于angular - 使用 ngFor 时删除最后一项之后的分隔线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49324884/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com