更新ng-repeat内的值

时间:2015-04-27 02:26:32

标签: angularjs ng-repeat

我正在尝试使用AngularJS的ng-repeat来检查前一次迭代的值是否与当前值相同。

previous = current

之后,检查我想先更新为等电流。

<div ng-repeat="product in Products  | filter: filters[0] | orderBy:'Section'">

      <div ng-if="product.Section !== $parent.previous">
           {{product.Section}}
      </div>

      $parent.previous = product.Section
</div> 

我不知道如何在Angular中更新ng-repeat中的值。

以下是一个例子:

{{1}}

更新

虽然这个问题在某些情况下可能仍然有用,但经过一番思考后,我意识到我真正想要的是根据部分对产品进行分组的新对象:How can I group data with an Angular filter?

0 个答案:

没有答案