Array 1: Categories -> Category_Name, Category_Id
Array 2: Items -> Item_name ... etc , Category_Belonging_Id
I need to filter shown items based on selected category.
<div class="list>
<select>
<option ng-repeat="category in categories" ng-model="category_type">
{{category.Category_Name}}
</option>
</select>
<a ng-repeat="item in items | filter: // What should I put here?" href="#">
...
</a>
</div>