カテゴリメニューをクリックしてフィルター製品のコードを教えてください。 HTML、JSON、JSのコードの下にあります。カタログをクリックしてAngularjsフィルター製品
カテゴリーのHTML:
<ul>
<li ng-repeat="cat in allData"><a ng-click="catFun(cat.catogery)" class="list-group-item">{{cat.catogery}}</a></li>
製品の表示HTML:
<div ng-repeat="product in allData | filter:filterBycat" class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img ng-src="{{product.productImg}}" alt="">
<div class="caption">
<h4 class="pull-right">{{product.productPrice}}</h4>
<h4><a ng-href="#/productdetails/{{product.id}}">{{product.productTitle}}</a></h4>
<p>{{product.description}}</p>
</div>
</div>
</div>
JSONデータ:
"1": {
"id":"1",
"catogery":"men",
"productImg": "http://placehold.it/320x150",
"description": "This is a short description. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"productTitle": "First Product",
"productPrice": "24.99",
},
"2": {
"id":"2",
"catogery":"women",
"productImg": "http://placehold.it/320x150",
"description": "This is a short description. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"productTitle": "Second Product",
"productPrice": "26.99",
},
JSコード:
$scope.filtered = {};
$scope.catFun = function(catVal){
$scope.filtered = catVal;
};
$scope.filterBycat = function(item){
if($scope.filtered){
return $scope.filtered === Object;
}else{
return item;
}
}
あなたは、HTTPS上のサンプルを追加することだろう://codepen.io/、お願いしますか? –
@ tarun-mishra:あなたの質問をより具体的にしてください。あなたの問題は何ですか?あなたのコードで現在動作していないのは何ですか?何を試しましたか? あなたは何を理解するのに苦労しますか? –
@ThomasGuilloryコードペンでプロジェクトをチェックしてください。それは大きなプロジェクトですので、私は小さな部分を追加しました。私はあなたがanglejsサービスで見ることができるjsonのサービスを使用してデータを取得しています https://codepen.io/tarunmishra592/pen/ZKZLjV?editors=1010 –