gpt4 book ai didi

css - AngularJS 多类使用表达式

转载 作者:行者123 更新时间:2023-11-28 17:38:54 24 4
gpt4 key购买 nike

我有一个表,我需要在其中应用两个不同的类,使用表达式。根据以下表达式应用第一类。 {'Up':'class-up', 'Down':'class-down'}[a.status]第二类是基于bold: !a.read应用的

这里的类是class-up , class-down , bold .那么表达式应该如何框定呢?我试过:

<tr ng-repeat="a in all" ng-class="{{'Up':'class-up', 'Down':'class-down'}[a.status],bold: !a.read}">

<tr ng-repeat="a in all" ng-class="{'Up':'class-up', 'Down':'class-down'}[a.status],bold: !a.read">

但我不断在控制台中收到错误。根据给定的表达式应用这些类的正确格式是什么

最佳答案

根据您的评论澄清:

<tr ng-repeat="a in all" ng-class="{'class-up': a.status=='up', 'class-down': a.status=='down', 'bold': !a.read}">hello world</tr>

关于css - AngularJS 多类使用表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24571614/

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