总结
我有一个品牌列表和一个产品列表。我正在使用 ng-repeat 来显示品牌列表,并使用带有过滤器的 ng-repeat 来显示各自品牌内的产品列表。我希望每个品牌和每个产品都有一个按钮,可以显示更多关于该品牌/产品的信息。所有这些按钮都应该在控制器上使用相同的功能。
问题
显示更多关于品牌的按钮也显示更多关于该品牌的每个产品,除非(这对我来说很奇怪)我首先单击该品牌中产品的按钮,在这种情况下它将正常工作。
CODE
请在此处查看 Plunker,请注意,当您单击品牌上的“显示类型”时,它还会显示该品牌内的所有产品类型: http ://plnkr.co/edit/gFnq3O3f0YYmBAB6dcwe?p=preview
HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div ng-app="myApp">
<div ng-controller="MyController as vm">
<div ng-repeat="brand in brands">
<h1>
{{brand.name}}
</h1>
<button ng-click="showType(brand)">
Show Brand Type
</button>
<div ng-show="show">
{{brand.type}}
</div>
<div ng-repeat="product in products
| filter:filterProducts(brand.name)">
<h2>
{{product.name}}
</h2>
<button ng-click="showType(product)">
Show Product Type
</button>
<div ng-show="show">
{{product.type}}
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>
<script src="script.js"></script>
</body>
</html>
JAVASCRIPT
var app = angular.module('myApp', []);
app.controller('MyController', function($scope) {
$scope.brands = [{
name: 'Kewl',
type: 'Cereal'
}, {
name: 'Joku',
type: 'Toy'
}, {
name: 'Loko',
type: 'Couch'
}]
$scope.products = [{
name: 'Kewlio',
type: 'Sugar Cereal',
brand: 'Kewl'
}, {
name: 'Kewliano',
type: 'Healthy Cereal',
brand: 'Kewl'
}, {
name: 'Jokurino',
type: 'Rattle',
brand: 'Joku'
}, {
name: 'Lokonoko',
type: 'Recliner',
brand: 'Loko'
}, {
name: 'Lokoboko',
type: 'Love Seat',
brand: 'Loko'
}]
$scope.showType = function(item) {
this.show = !this.show;
}
$scope.filterProducts = function(brand) {
return function(value) {
if(brand) {
return value.brand === brand;
} else {
return true;
}
}
}
});
重要说明:我意识到我可以向对象(brand.show)添加一个属性并将对象传递给函数,然后将该属性更改为真/假,但我不想这样做,因为在我的实际应用程序中,该按钮将显示一个编辑品牌/产品并将信息提交给 Firebase 的表单,我不希望该对象具有“显示”属性。每次我想在 Firebase 中编辑信息时,我都不想删除“显示”属性。