floydwch / angular-underscore

Underscore adapter for AngularJS
316 stars 86 forks source link

groupBy filter error #3

Open boxxxie opened 11 years ago

boxxxie commented 11 years ago

Error: 10 $digest() iterations reached. Aborting!

i get this when using groupBy as a filter on a small set of data (20-30 items)

<div id="container">
  <div class="item span4 well" ng-repeat="(place_type, places) in groupBy(model.places,'type')">
    <a href="#/discover/{{model.id}}/{{place_type}}"><h4>{{place_type}}</h4></a>
  </div>
</div>
floydwch commented 11 years ago

related issue: https://github.com/angular/angular.js/issues/1389

floydwch commented 11 years ago

In my experience, despite the error message, it still works?

boxxxie commented 11 years ago

it works, but only after waiting 3 minutes for it to render my data.... when i use groupby without a filter things are fast. but i rather use a filter if possible, for simplicity sake.