私は、いくつかの lowValue および HighValue ループで ng-repeat を行っています。
1. LowValue1 HighValue1
2. LowValue2 HighValue2
3. LowValue3 HighValue3
. . .
n. LowValue n HighValue n
ng-repeat では次のようなものです:
<div ng-repeat="categoryObject in category.tiers track by $index">
<div class="col-lg-3 ">
<label class="control-label" translate> From ($) </label>
<input type="number" class="form-control" ng-model="categoryObject.lowValue" >
</div>
<div class="col-lg-3 ">
<label class="control-label" translate> To ($) </label>
<input type="number" class="form-control" ng-model="categoryObject.highValue" >
</div>
</div>
そして、私の要件は、1 番目の highValue は 2 番目の lowValue と等しくなければならず、2 番目の highValue は 3 番目の lowValue と等しくなければならず、息子は..
これら2つのデータをバインドするにはどうすればよいですか?