1. ホーム
  2. javascript

[解決済み] AngularJSでチェックボックスの値のリストにバインドするにはどうすればいいですか?

2022-03-15 18:28:36

質問

いくつかのチェックボックスがあります。

<input type='checkbox' value="apple" checked>
<input type='checkbox' value="orange">
<input type='checkbox' value="pear" checked>
<input type='checkbox' value="naartjie">

例えば、チェックボックスが変更されるたびに、コントローラがチェックされた値のリストを保持するように、コントローラ内のリストにバインドしたいと思います。 ['apple', 'pear'] .

ng-modelは1つのチェックボックスの値をコントローラ内の変数にバインドすることしかできないようです。

4つのチェックボックスをコントローラ内のリストにバインドするような、他の方法はありますか?

どのように解決するのですか?

この問題にアプローチする方法は2つあります。単純な配列を使用するか、オブジェクトの配列を使用するかです。それぞれの解決策には長所と短所があります。以下に、それぞれのケースについて説明します。


入力データとして単純な配列を使用した場合

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);

    // Is currently selected
    if (idx > -1) {
      $scope.selection.splice(idx, 1);
    }

    // Is newly selected
    else {
      $scope.selection.push(fruitName);
    }
  };
}]);

プロフェッショナル : シンプルなデータ構造で、名前によるトグルが扱いやすい

短所 : 入力と選択という2つのリストを管理する必要があるため、追加・削除が面倒


入力データとしてオブジェクトの配列を使用した場合

HTMLは次のようになる。

<label ng-repeat="fruit in fruits">
  <!--
    - Use `value="{{fruit.name}}"` to give the input a real value, in case the form gets submitted
      traditionally

    - Use `ng-checked="fruit.selected"` to have the checkbox checked based on some angular expression
      (no two-way-data-binding)

    - Use `ng-model="fruit.selected"` to utilize two-way-data-binding. Note that `.selected`
      is arbitrary. The property name could be anything and will be created on the object if not present.
  -->
  <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 });
  };

  // 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/