简体   繁体   中英

ng-repeat with dynamic array : view not updated

I have some checkboxes inside blocks like this :

<div ng-show="searchIn.IS" class="filterContent">
    <div ng-click="toggleFilter('IS')">
       <span class="{{filters.IS}}FilterIcon"></span> 
       Information System :
    </div>
    <div ng-show="filters.IS">
        <md-checkbox ng-repeat="IS in ISList" ng-click="setISSearch(IS)" ng-checked="isInISSearch(IS)">
            {IS}}
        </md-checkbox>
    </div>
</div>
<br />
<div ng-show="searchIn.area" class="filterContent">
   <div ng-click="toggleFilter('area')">
      <span class="{{filters.area}}FilterIcon"></span>
      Area :
   </div>
   <div ng-show="filters.area">
     <md-checkbox ng-repeat="area in filterAreaList" ng-click="setAreaSearch(area)" ng-checked="isInAreaSearch(area)" ng-show="isInCurrentAreas(area)">
         {{area}}
     </md-checkbox>
   </div>
</div>

So the thing is that filterAreaList is changed each time I check or uncheck a checkbox from the ISList block. But the view is not updated, all the area are still displayed. I also tried ng-if instead of ng-show .

$scope.filterAreaList = [];

$scope.getAreaFilters = function ()  {
    $scope.searchedIS = $scope.ISList.slice();
    for (var i = $scope.searchedIS.length; i >= 0; i--) {
        if ($scope.searched.IS.indexOf($scope.searchedIS[i]) === -1)
            $scope.searchedIS.splice(i, 1);
    }
    for (var i = 0; i < $scope.areaList.length; i++) {
        for (var j = 0; j < $scope.searchedIS.length; j++)
            if ($scope.hasArea($scope.searchedIS[j], $scope.areaList[i]))
                $scope.filterAreaList.push($scope.areaList[i]);
    }
};

$scope.isInCurrentAreas = function (area) {
    if ($scope.filterAreaList.indexOf(area) === -1)
        return false;
    return true;
};

Some other topics pointed to this : http://www.bennadel.com/blog/2443-rendering-dom-elements-with-ngrepeat-in-angularjs.htm

But I don't really see how to apply this to my case.

Well, I actually missed a few things :

In order to make it work, I added : $scope.filterAreaList = []; in my getAreaFilters() function, and I call getAreaFilters() in my setAreaSearch(area)

And that's it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM