2013-05-07 5 views

답변

2

모델 :

{"cars": 
    [ 
    {"v":"m","n":"Mini","c":false}, 
    {"v":"c","n":"Corvette","c":true}, 
    {"v":"b","n":"BMW","c":true}, 
    {"v":"l","n":"Lamborghini","c":true}, 
    {"v":"f","n":"Ferrari","c":false} 
    ] 
} 

만 확인하려면 :

$scope.brands = $filter('filter')($scope.viewModel, {c: true}); 

http://plnkr.co/edit/PnABre?p=preview

참조
관련 문제