> 웹 프론트엔드 > JS 튜토리얼 > AngularJS 체크박스를 값 목록에 바인딩하는 방법은 무엇입니까?

AngularJS 체크박스를 값 목록에 바인딩하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-24 17:33:14
원래의
495명이 탐색했습니다.

How to Bind AngularJS Checkboxes to a List of Values?

AngularJS 체크박스를 값 목록에 바인딩

문제:

AngularJS에서는 체크박스 목록이 표시되고, 목표는 이들과 컨트롤러의 목록 사이에 바인딩을 설정하는 것입니다. 선택된 각 확인란은 목록에 관련 값이 포함되어 있음을 나타냅니다.

해결책:

AngularJS는 이 문제에 대해 두 가지 실행 가능한 솔루션을 제공합니다.

< ;h3>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 for a given fruit by name
  $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. 입력 데이터로 객체 배열

객체 배열을 입력 데이터로 사용하면 복잡성이 추가되지만 삽입 및 삭제 작업이 단순화됩니다.

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

컨트롤러 코드에 변경 사항이 반영됩니다.

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 method to get selected fruits
  $scope.selectedFruits = function selectedFruits() {
    return filterFilter($scope.fruits, { selected: true });
  };

  $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으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿