我在div中显示产品,用户可以点击它们来选择它们。我遇到的问题是只能选择一种产品。我不想将此功能更改为多选,功能应该收集产品的ID。
这是我的产品HTML
<div class="product_item hit w_xs_full" ng-repeat="p in products track by $index" style="float: left; background-color: blue;">
<figure class="r_corners photoframe type_2 t_align_c tr_all_hover shadow relative"
ng-click="selectUserItems($index)" ng-class="{sel: $index == selected}">
<!--product preview-->
<img ng-src="images/products/{{p.images[0].thumbName}}" alt="{{p.name}}" class="tr_all_hover">
<!--description and price of product-->
<figcaption>
<br>
<h5 class="m_bottom_10"><b>{{p.name}}</b></h5>
<p class="scheme_color f_size_large m_bottom_15" style="color:black;">Located in: <b>{{p.country}}</b></p>
<a href="#/swap/{{p.mainCategorieLink}}/{{p.subCategoryLink}}/{{p.alias}}">
<button class="button_type_4 bg_scheme_color r_corners tr_all_hover color_light mw_0 m_bottom_15">See item</button>
</a>
</figcaption>
</figure>
</div>
这是我选择项目的控制器功能
//select items
$scope.selectUserItems = function(index){
$scope.selected = index;
};
选择项目后,div的背景为蓝色
.sel {
background-color:#5ACBFF;
}
那么如何正确编写控制器功能,以便您可以选择多个div和$scope.selectd
变量收集产品ID。
答案 0 :(得分:1)
在产品对象中,添加一个字段&#39;已选中&#39;控制是否选择该项目。并在ng-click中切换{{1}}的值:
{{1}}
答案 1 :(得分:1)
目前,$scope.selected = index;
只包含一个索引,您需要将其设为数组并切换当前选择:
变体1
$scope.selected[index] = !$scope.selected[index];
并更改ngClass
定义:
ng-class="{sel: $index[selected]}"
变体2
或更改您的ngClick
- 功能:
ng-click="selectUserItems(p)"
selectUserItems
函数
$scope.selectUserItems = function(item){
item.selected = !item.selected;
};
并更改ngClass
定义:
ng-class="{sel: p.selected}"