此 html 代码的 DRY 一致性

DRY conformance for this html code

此代码使用 angularjs ng-table 模块在 table 中显示值。

相关的 html 代码如下所示;

<div ng-controller="ViewCtrl" class="container">
    <table ng-table="tableParams" class="table table-bordered">
        <thead>

        <tr>            
            <th>price_alert</th>
            <th>lastPrice</th>
        </tr>

        <thead>
        <tbody>
        <tr ng-repeat="item in $data">
            <td data-title="'price_alert'" ng-class="{ red: item.lastPrice < stk.price_alert }>
                ${{item.price_alert}}
            </td>
            <td data-title="'lastPrice'" ng-class="{ red: item.lastPrice < stk.price_alert }>
                ${{item.lastPrice}}
            </td>
        </tr>
        </tbody>
        </tbody>
    </table>
</div>

CSS代码;

.red { color: red; }

控制器代码;

controller('ViewCtrl', ['$scope', '$http', 'moment', 'ngTableParams',
        function ($scope, $http, $timeout, $window, $configuration, $moment, ngTableParams) {
            var tableData = [];
            //Table configuration
            $scope.tableParams = new ngTableParams({
                page: 1,
                count: 100
            },{
                total:tableData.length,
                //Returns the data for rendering
                getData : function($defer,params){
                    var url = 'http://127.0.0.1/list';
                    $http.get(url).then(function(response) {
                        tableData = response.data;
                        $defer.resolve(tableData.slice((params.page() - 1) * params.count(), params.page() * params.count()));
                        params.total(tableData.length);
                    });
                }
            });
        }])

在 html 代码中,此条件重复显示文本颜色 ng-class="{ red: item.lastPrice < stk.price_alert。如果可能,如何修改代码以保持 DRY(不要重复自己)原则?

听起来您只想消除单个额外的 "red" class 声明。为此,请将您的 ng-class 放入 tr 中,如下所示:

    <tr ng-repeat="item in $data" ng-class="{ red: item.lastPrice < stk.price_alert }">
        <td data-title="'price_alert'">
            ${{item.price_alert}}
        </td>
        <td data-title="'lastPrice'">
            ${{item.lastPrice}}
        </td>
    </tr>

然后将您的 css 更改为:

.red td { color: red; }

您不能使用此 css 在该行内嵌套额外的 table,但我猜您不需要这样做。