我正在使用联系卡。我需要在列表中添加姓名和联系电话。但条件是名称和联系人必须只添加2次。对于前。
联系Card-1
每当我点击按钮时,我的名字和联系人都会在列表中添加,但具有一定的条件。 我的代码是
<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>
答案 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