我有这张表显示软件日志,它由 JSON 数据填充:
<div ng-controller="LogCtrl">
<table id="logtable" style="width:100%">
<tr>
<th>Timestamp</th>
<th>Severity</th>
<th>Message</th>
</tr>
<tr ng-repeat="log in logs" class="logentry">
<td>{{log.timestamp}}</td>
<td>{{log.severity}}</td>
<td>{{log.message}}</td>
</tr>
</table>
它工作正常,但我希望能够根据tr
其严重性更改每个元素背景。例如,如果该日志的严重性为“ERROR”,则其在表中的条目应为红色背景,如果严重性为“MESSAGE”,则应为绿色等。
我已经看过了ng-style
,但我没有找到如何将它用于此目的。
有什么建议么?