gpt4 book ai didi

angularjs - 带有 bool 值的 Angular ng-switch

转载 作者:行者123 更新时间:2023-12-03 21:05:43 24 4
gpt4 key购买 nike

我想用 angular ng-switch 检查 bool 数据

这是我的代码。但它不起作用

<div ng-switch={{Item.ItemDetails.IsNew}}>
<div ng-switch-when="true">
<p class="new fontsize9 fontWeightBold">NEW</p>
</div>
</div>
<div ng-switch={{Item.ItemDetails.IsFeatured}}>
<div ng-switch-when="true">
<div class="featured">
<p class="fontWeightBold fontsize8">featured</p>
</div>
</div>
</div>

{{Item.ItemDetails.IsNew}} 和 {{Item.ItemDetails.IsFeatured}} 的值为 true 或 false

最佳答案

将 bool 值转换为字符串:

<div ng-switch="Item.ItemDetails.IsNew.toString()">
<div ng-switch-when="true">

关于angularjs - 带有 bool 值的 Angular ng-switch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20470065/

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