13

我正在使用 angular.js 和(为了论证)引导程序。现在我需要迭代“事物”并将它们显示在 ''rows'' 中:

<div class="row">
  <div class="span4">...</div>
  <div class="span4">...</div>
  <div class="span4">...</div>
</div>
<div class="row">
  etc...

现在,我怎样才能在每三件事上用角度关闭我的.rowdiv?我从 angular-ui 尝试了 ui-if ,但即使这样也没有成功。

如果我要使用服务器端渲染,我会做这样的事情(这里是 JSP 语法,但没关系):

<div class="row>
  <c:forEach items="${things}" var="thing" varStatus="i">
    <div class="span4">
        ..
    </div>
  <%-- Here is the trick:--%>
  <c:if test="${i.index % 3 == 2}">
          </div><div class="row">
  </c:if>
  </c:forEach>
</div>

请注意,我需要在此处实际更改 DOM,而不仅仅是 css 隐藏元素。我尝试在.row.span4div 上重复,但无济于事。

4

3 回答 3

19

编辑 2013 年 11 月 12 日

似乎不仅角度在 1.2 中发生了一些变化,而且还有更好的方法。我创建了两个过滤器。我试图将它们合二为一,但出现了摘要错误。这是两个过滤器:

.filter("mySecondFilter", function(){
    return function(input, row, numColumns){
        var returnArray = [];
        for(var x = row * numColumns; x < row * numColumns + numColumns; x++){
            if(x < input.length){
                returnArray.push(input[x]);                    
            }
            else{
                returnArray.push(""); //this is used for the empty cells
            }
        }
        return returnArray;   
    }
})
.filter("myFilter", function(){
    return function(input, numColumns){
        var filtered = [];
        for(var x = 0; x < input.length; x++){
            if(x % numColumns === 0){
                filtered.push(filtered.length);
            }
        }
        return filtered;
    }
});

现在 html 将如下所示:

<table border="1">
     <tr data-ng-repeat="rows in (objects | myFilter:numColumns)">
          <td data-ng-repeat="column in (objects | mySecondFilter:rows:numColumns)">{{ column.entry }}</td>
     </tr>  
</table>

jsfiddle:http: //jsfiddle.net/W39Q2/


编辑 2013 年 9 月 20 日

在处理大量需要动态列的数据时,我想出了一个更好的方法。

HTML:

<table border="1">
    <tr data-ng-repeat="object in (objects | myFilter:numColumns.length)">
        <td data-ng-repeat="column in numColumns">{{ objects[$parent.$index * numColumns.length + $index].entry }}</td>
    </tr>  
</table>

Javascript:

$scope.objects = [ ];
for(var x = 65; x < 91; x++){
    $scope.objects.push({
        entry: String.fromCharCode(x)
    });
}

$scope.numColumns = [];
$scope.numColumns.length = 3;

新过滤器:

.filter("myFilter", function(){
    return function(input, columns){
        var filtered = [];
        for(var x = 0; x < input.length; x+= columns){
             filtered.push(input[x]);   
        }
        return filtered;
    }
});

这允许它是动态的。要更改列,只需更改 numColumns.length。在 js 小提琴中,您可以看到我已将其连接到下拉列表。

jsFiddle:http: //jsfiddle.net/j4MPK/


您的 html 标记将如下所示:

<div data-ng-repeat="row in rows">
    <div data-ng-repeat="col in row.col">{{col}}</div>
</div>

然后你可以像这样在你的控制器中创建一个变量:

$scope.rows = [
    {col: [ 1,2,3,4 ]},
    {col: [ 5,6,7 ]},
    {col: [ 9,10,11,12 ]}
]; 

这样,您可以拥有任意数量的列。

jsfiddle http://jsfiddle.net/rtCP3/39/


编辑我已经修改了小提琴,现在支持拥有一个平面对象数组:

jsfiddle:http: //jsfiddle.net/rtCP3/41/

html 现在看起来像这样:

<div class="row" data-ng-repeat="row in rows">
    <div class="col" data-ng-repeat="col in cols">
        {{objects[$parent.$index * numColumns + $index].entry}}
    </div>
</div>  

然后在控制器中我有:

$scope.objects = [
    {entry: 'a'},
    {entry: 'b'},
    {entry: 'c'},
    {entry: 'd'},
    {entry: 'e'},
    {entry: 'f'},
    {entry: 'g'},
    {entry: 'h'}    
];

$scope.numColumns = 3;
$scope.rows = [];
$scope.rows.length = Math.ceil($scope.objects.length / $scope.numColumns);
$scope.cols = [];
$scope.cols.length = $scope.numColumns;

$scope.numColumns 变量用于指定每行需要多少列。


要处理动态数组大小更改,请注意数组的长度(不是整个数组,这将是多余的)

$scope.numColumns = 3;  
$scope.rows = [];    
$scope.cols = [];    
$scope.$watch("objects.length", function(){
    $scope.rows.length = Math.ceil($scope.objects.length / $scope.numColumns);
    $scope.cols.length = $scope.numColumns;        
});

jsfiddle:http: //jsfiddle.net/rtCP3/45/

于 2013-01-02T14:00:00.787 回答
15

为什么不使用像这样简单的东西? http://jsfiddle.net/everdimension/ECCL7/3/

<div ng-controller="MyCtrl as ctr">
    <div class="row" ng-repeat="project in ctr.projects" ng-if="$index % 3 == 0">
         <h4 class="col-sm-4" ng-repeat="project in ctr.projects.slice($index, $index+3)">
            {{project}}
        </h4>
    </div>
</div>
于 2014-05-25T17:19:56.737 回答
3

我推荐一个指令有几个原因:

  • 它可以在 HTML 中重用和参数化(即,“每 3 件事”可以是指令属性)
  • 它不需要任何控制器代码/$scope 属性,因此如果“things”数组的大小发生变化,它不需要重新计算控制器 $scope 属性

这是一个建议的元素指令:

<row-generator row-data=objects col-count=3></row-generator>

在实现中,我使用了类似于您的服务器端示例的代码:

myApp.directive('rowGenerator', function() {
    var rowTemplate = '<div class="row">',
        colTemplate = '<div class="span4">';
    return {
        restrict: 'E',
        // use '=' for colCount instead of '@' so that we don't
        // have to use attr.$observe() in the link function
        scope: { rowData: '=', colCount: '='},
        link: function(scope, element) {
            // To save CPU time, we'll just watch the overall
            // length of the rowData array for changes.  You
            // may need to watch more.
            scope.$watch('rowData.length', function(value) {
                var html = rowTemplate;
                for(var i=0; i < scope.rowData.length; i++) {
                    html += colTemplate + scope.rowData[i].key + '</div>';
                    if (i % scope.colCount == scope.colCount - 1) {
                        html += '</div>' + rowTemplate;
                    }
                }
                html += '</div>';
                // don't use replaceWith() as the $watch 
                // above will not work -- use html() instead
                element.html(html);
            })
        }
    }
});

数据:

$scope.things = [
    {key: 'one'},
    {key: 'two'},
    {key: 3},
    {key: 4},
    {key: 'five'},
    {key: 'six'},
    {key: 77},
    {key: 8}    
];

小提琴

为了提高效率,所示指令仅查找对 rowData(即,事物)数组长度的更改。如果你想让指令在数组元素之一的值发生变化时更新视图,你需要一个更昂贵的 $watch:

scope.$watch('rowData', function(value){ ... }, true)

最后true做“浅”脏检查(“比较对象是否相等而不是参考) - 请参阅文档

我不喜欢该指令的一件事——它需要知道 rowData 条目有一个带有 name 的属性key

html += colTemplate + scope.rowData[i].key + '</div>';
于 2013-01-03T03:43:47.807 回答