使用ng-model更新ng-repeat值

时间:2015-08-27 12:26:06

标签: angularjs-ng-repeat angular-ngmodel

<input type="text" ng-repeat="board in allBoards track by $index" ng-model="board">
<a href="#" class="success button" ng-click="UpdateBoards(board);">&#10004;</a>

我要做的是使用UpdateBoards()修改电路板名称。但是我单击按钮,输入的值不会传递给UpdateBoards,我应该更改什么?谢谢

1 个答案:

答案 0 :(得分:0)

因此,我了解您的问题,请尝试以下操作:

<div ng-repeat="board in allBoards track by $index">
      <input type="text" ng-model="board">
      <a href="#" class="success button" ng-click="UpdateBoards(board);">&#10004;</a>
</div>

ng-repeat包裹在div并在input and a href tag内调用每个div,希望它能为您提供帮助。