gpt4 book ai didi

javascript - angularjs中ng-repeat值为null时如何显示空字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:40:11 24 4
gpt4 key购买 nike

如何在 angularjs 中显示 '--' incase of ng-repeat value is null?

注意:我只需要在值为空时显示'--',而不是在值为零时显示。

尝试使用 {{x.daysSinceMaintenanceUpdate || '--'}},但即使值为零,它也会显示 '--'。

最佳答案

零是假的。使用三元运算符:

{{ x.daysSinceMaintenanceUpdate == null ? '--' : x.daysSinceMaintenanceUpdate }}

关于javascript - angularjs中ng-repeat值为null时如何显示空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48114822/

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