如何根据父母检查所有孩子,同时根据孩子检查父母?

时间:2016-02-04 10:46:22

标签: javascript angularjs checkbox ng-repeat angularjs-ng-checked

Plnkr:https://plnkr.co/edit/Tt96EE2rruy1HAudRVJR?p=preview

我有以下嵌套的复选框循环:

<ul>
  <li ng-repeat="continent in destinations">
    <input type="checkbox" ng-model="continent.selected">
    {{continent.name}} ({{continent.countries_selected}} / {{continent.countries.length}}) - {{continent.all_selected}}
    <ul>
      <li ng-repeat="country in continent.countries">
        <input type="checkbox" ng-model="country.selected" ng-checked="continent.selected">
        {{country.name}}
      </li>
    </ul>
  </li>
</ul>

这是检测($ watch)是否已检查部分或全部子复选框的代码,如果是,则也会检查父复选框。

工作正常。

但是,当我检查父框时,它不会检查。

我想要实现的是,当我选中一个父复选框时,它的所有子项也会被检查,当我取消选中父复选框时,其所有子项都将被取消选中。

$scope.$watch('destinations', function(destinations){

  var total_selected = 0;

  angular.forEach(destinations, function(continent){

    continent.countries_selected = 0;

    angular.forEach(continent.countries, function(country){

      total_selected += country.selected ? 1 : 0

      continent.countries_selected += country.selected ? 1 : 0

      if (continent.countries_selected == continent.countries.length) {
        continent.selected = true;
      } else {
        continent.selected = false;
      }

    });

  });

  $scope.select_all = function(continent){
    continent.selected = true;
  }

  $scope.total_selected = total_selected;

}, true);

2 个答案:

答案 0 :(得分:0)

你可以尝试一下。在更改function

时调用continent
<input type="checkbox" ng-model="continent.selected" ng-change="parentChange($index)">

并在控制器中:添加另一个功能

$scope.parentChange = function(index) {
    angular.forEach( $scope.destinations[index].countries, function(country) {
      country.selected = $scope.destinations[index].selected;
    });
  };

并且可能无需为国家/地区复选框添加ng-checked="continent.selected"

使用

<input type="checkbox" ng-model="country.selected">

而不是

<input type="checkbox" ng-model="country.selected" ng-checked="continent.selected">

Plunker DEMO LINK

答案 1 :(得分:0)

复选框中的ng-checked属性接受表达式。因此,您可以使用和/或条件给出表达式,如下所述,以便根据表达式进行检查。

<input type="checkbox" ng-checked="child_1 && child_2 && child_3 && child_4 && child_5" ng-model="parent"/> Select All<br/>

单击每个子复选框时,您不必编写单独的函数来执行计算

Here is the example