2016-11-02 6 views
-1

여기는 체크 된 값이 true 인 경우에만 필요합니다. 이제 truefalse이 추가되었습니다.배열에서 hasOwnProperty() 사용

angular.forEach($scope.usersDetails, function(value, key) { 
    if (value.hasOwnProperty('checked')) { 

    } 
}); 

답변

0
angular.forEach($scope.usersDetails, function(value, key) { 

    if (value.hasOwnProperty('checked') && value.checked) 
    { 

    } 
});