Angular에서는 많은 개체를 반환하는 개체가 범위에 있습니다. 각각 ID가 있습니다 (이것은 DB가 없으므로 플랫 파일에 저장되며 사용자가 할 수없는 것 같습니다 ng-resource
)
내 컨트롤러에서 :
$scope.fish = [
{category:'freshwater', id:'1', name: 'trout', more:'false'},
{category:'freshwater', id:'2', name:'bass', more:'false'}
];
내보기에는 ng-show
more 로 기본적으로 숨겨진 물고기에 대한 추가 정보가 있지만 simple show more 탭을 클릭하면 함수를 호출하고 싶습니다 showdetails(fish.fish_id)
. 내 기능은 다음과 같습니다.
$scope.showdetails = function(fish_id) {
var fish = $scope.fish.get({id: fish_id});
fish.more = true;
}
이제보기에 더 많은 세부 정보가 표시됩니다. 그러나 설명서를 검색 한 후 해당 fish
배열 을 검색하는 방법을 알 수 없습니다 .
그렇다면 어레이를 어떻게 쿼리합니까? 콘솔에서 어떻게 디버거를 호출 $scope
하여 재생할 개체를 갖출 수 있습니까?
답변
그것이 당신에게 약간 도움이 될 수 있는지 알고 있습니다.
여기 내가 당신을 위해 시뮬레이션하려고 한 것입니다.
jsFiddle 확인;)
http://jsfiddle.net/migontech/gbW8Z/5/
‘ng-repeat’에서도 사용할 수있는 필터를 만들었습니다.
app.filter('getById', function() {
return function(input, id) {
var i=0, len=input.length;
for (; i<len; i++) {
if (+input[i].id == +id) {
return input[i];
}
}
return null;
}
});
컨트롤러에서의 사용법 :
app.controller('SomeController', ['$scope', '$filter', function($scope, $filter) {
$scope.fish = [{category:'freshwater', id:'1', name: 'trout', more:'false'}, {category:'freshwater', id:'2', name:'bass', more:'false'}]
$scope.showdetails = function(fish_id){
var found = $filter('getById')($scope.fish, fish_id);
console.log(found);
$scope.selected = JSON.stringify(found);
}
}]);
질문이 있으면 알려주세요.
답변
기존 $ filter 서비스를 사용할 수 있습니다. 위의 바이올린을 업데이트했습니다 http://jsfiddle.net/gbW8Z/12/
$scope.showdetails = function(fish_id) {
var found = $filter('filter')($scope.fish, {id: fish_id}, true);
if (found.length) {
$scope.selected = JSON.stringify(found[0]);
} else {
$scope.selected = 'Not found';
}
}
Angular 문서는 http://docs.angularjs.org/api/ng.filter:filter에 있습니다.
답변
@migontech의 답변에 추가하고 “아마도 좀 더 일반적으로 만들 수있다”는 그의 의견에 대해 설명하려면 여기에 방법이 있습니다. 아래에서 모든 속성으로 검색 할 수 있습니다.
.filter('getByProperty', function() {
return function(propertyName, propertyValue, collection) {
var i=0, len=collection.length;
for (; i<len; i++) {
if (collection[i][propertyName] == +propertyValue) {
return collection[i];
}
}
return null;
}
});
필터링 호출은 다음과 같습니다.
var found = $filter('getByProperty')('id', fish_id, $scope.fish);
문자열 기반 일치를 허용하기 위해 단항 (+) 연산자를 제거했습니다.
답변
더럽고 쉬운 해결책은 다음과 같습니다.
$scope.showdetails = function(fish_id) {
angular.forEach($scope.fish, function(fish, key) {
fish.more = fish.id == fish_id;
});
};
답변
Angularjs에는 이미 https://docs.angularjs.org/api/ng/filter/filter와 같은 필터 옵션이
있습니다.
답변
귀하의 솔루션은 정확하지만 불필요하게 복잡합니다. 순수한 자바 스크립트 필터 기능을 사용할 수 있습니다 . 이것이 당신의 모델입니다.
$scope.fishes = [{category:'freshwater', id:'1', name: 'trout', more:'false'}, {category:'freshwater', id:'2', name:'bass', more:'false'}];
그리고 이것이 당신의 기능입니다.
$scope.showdetails = function(fish_id){
var found = $scope.fishes.filter({id : fish_id});
return found;
};
표현식을 사용할 수도 있습니다.
$scope.showdetails = function(fish_id){
var found = $scope.fishes.filter(function(fish){ return fish.id === fish_id });
return found;
};
이 기능에 대한 추가 정보 : LINK
답변
이 스레드를 보았지만 내 검색과 일치하지 않는 ID를 검색하고 싶었습니다. 이를 수행하는 코드 :
found = $filter('filter')($scope.fish, {id: '!fish_id'}, false);