gpt4 book ai didi

javascript - 在 Angular 的 html 上有条件打印

转载 作者:行者123 更新时间:2023-12-02 22:23:10 28 4
gpt4 key购买 nike

我循环遍历产品列表,然后检查产​​品 ID 是否已存在于产品(对象)数组中,然后打印数量,否则如果产品不在对象中,则尝试打印 0。如下是我到目前为止尝试过的代码。

<ion-item class="added" *ngFor="let item of fetchProducts();let key=index;">
<ng-container *ngFor="let cartitem of cart" >
<span class="count" *ngIf="cartitem.p_id==item.p_id;">
{{cartitem.qty}}
</span>
</ng-container>
</ion-item>

如果 item 不在同一范围内的 cartitem 中,如何打印 0。

最佳答案

您可以简单地使用三元运算符来完成此操作,如下所示。

<ng-container  *ngFor="let cartitem of cart" >
<span class="count">
{{cartitem.p_id==item.p_id ? cartitem.qty : 0 }}
</span>
</ng-container>

关于javascript - 在 Angular 的 html 上有条件打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59155030/

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