Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在使用 AngularJS 打印时比较值。
喜欢 {{campaignOverview.TotalMailSent | 数} > 0 }
我想做的是将发送的邮件总数与 0 进行比较,如果为 0,则打印“N/A”,否则它本身的值。
提前致谢。
您可以使用:符号将参数传递给过滤器
:
{{campaignOverview.TotalMailSent | number:0}}
number然后将是一个过滤器,如果为零,则执行“N/A”的格式化逻辑,否则为 self.
number