如何限制ng-repeat中重复的项目数。 angularjs?

时间:2017-02-20 09:53:43

标签: javascript angularjs node.js

我正在使用联系卡。我需要在列表中添加姓名和联系电话。但条件是名称和联系人必须只添加2次。对于前。

联系Card-1

  1. 名称-A
  2. 名称-B
  3. 联系-1
  4. 联系-2
  5. 每当我点击按钮时,我的名字和联系人都会在列表中添加,但具有一定的条件。 我的代码是

    <md-list-item ng-show="showContactList" class="md-2-line" ng-repeat="numbers in contactList track by $index" >
    <i ng-show="numbers.type == 'test'" class="material-icons md-avatar-icon">textsms</i>
    <i ng-show="numbers.type == 'CELL' || numbers.type == 'EXT'" class="material-icons md-avatar-icon">phone</i>
    <div class="md-list-item-text" ng-class="{'md-offset': phone.options.offset }">
    <h3>  {{ numbers.type }} </h3>
    <p> {{ numbers.value }} </p>
    </div>
    <i class="material-icons md-avatar-icon add-rm-icon margin-right" ng-click="arrayText.push(numbers);">add</i>
    </md-list-item>
    

1 个答案:

答案 0 :(得分:2)

您可以使用:

update t1 set t1.comment =t2.type from dbo.Table_1 t1 inner join dbo.Table_2 t2 ON t2.keys = t1.keys

<div ng-repeat="item in items | filter:{visible: true} | limitTo: 50"> <p>{{item.id}}</p> </div>将返回所有可见项目的列表

您可以查看angularjs文档以获取有关过滤器过滤器的更多信息。 http://docs.angularjs.org/api/ng.filter:filter