AngularJS에서 여러 확인란 값을 목록에 바인딩하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-19 04:21:02
원래의
588명이 탐색했습니다.

How to Bind Multiple Checkbox Values to a List in AngularJS?

AngularJS에서 체크박스 값 목록을 바인딩하는 방법

소개

체크박스 세트를 처리할 때 , 효과적인 관리를 위해 해당 값을 컨트롤러의 목록에 바인딩하는 것이 중요할 수 있습니다. 그러나 AngularJS의 ng-model 속성은 단일 확인란 값을 바인딩하는 것으로 제한되는 것 같습니다. 이 문서에서는 간단한 배열이나 객체 배열을 입력 데이터로 활용하여 이 문제를 해결하는 두 가지 접근 방식을 살펴봅니다.

접근 방식 1: 단순 배열

HTML:

<label ng-repeat="fruitName in fruits">
  <input
    type="checkbox"
    name="selectedFruits[]"
    value="{{fruitName}}"
    ng-checked="selection.indexOf(fruitName) > -1"
    ng-click="toggleSelection(fruitName)"
  > {{fruitName}}
</label>
로그인 후 복사

제어 더러:

app.controller('SimpleArrayCtrl', ['$scope', function SimpleArrayCtrl($scope) {

  // Fruits
  $scope.fruits = ['apple', 'orange', 'pear', 'naartjie'];

  // Selected fruits
  $scope.selection = ['apple', 'pear'];

  // Toggle selection
  $scope.toggleSelection = function toggleSelection(fruitName) {
    var idx = $scope.selection.indexOf(fruitName);

    if (idx > -1) {
      $scope.selection.splice(idx, 1);
    } else {
      $scope.selection.push(fruitName);
    }
  };
}]);
로그인 후 복사

장점:

  • 간단함 데이터 구조
  • 이름으로 쉽게 전환

단점:

  • 번거로운 추가/제거 작업

접근법 2: 객체 배열

HTML:

<label ng-repeat="fruit in fruits">
  <input
    type="checkbox"
    name="selectedFruits[]"
    value="{{fruit.name}}"
    ng-model="fruit.selected"
  > {{fruit.name}}
</label>
로그인 후 복사

제어 oller:

app.controller('ObjectArrayCtrl', ['$scope', 'filterFilter', function ObjectArrayCtrl($scope, filterFilter) {

  // Fruits
  $scope.fruits = [
    { name: 'apple',    selected: true },
    { name: 'orange',   selected: false },
    { name: 'pear',     selected: true },
    { name: 'naartjie', selected: false }
  ];

  // Selected fruits
  $scope.selection = [];

  // Helper for selected fruits
  $scope.selectedFruits = function selectedFruits() {
    return filterFilter($scope.fruits, { selected: true });
  };

  // Watch fruits for changes
  $scope.$watch('fruits|filter:{selected:true}', function (nv) {
    $scope.selection = nv.map(function (fruit) {
      return fruit.name;
    });
  }, true);
}]);
로그인 후 복사

장점:

  • 쉬움 추가/제거 작업

단점:

  • 더 복잡한 데이터 구조
  • 이름별 전환이 번거로움

데모: http://jsbin.com/ImAqUC/1/

위 내용은 AngularJS에서 여러 확인란 값을 목록에 바인딩하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿