If you want to bind ng-model cyclically, how can you ensure that the names of ng-model are different?
业精于勤,荒于嬉;行成于思,毁于随。
Use an array
<p ng-repeat="item in arr"> <input ng-model="inputs[$index]"> </p>
There is $scope.inputs array
Use an array
There is $scope.inputs array