问题 -
我有一个显示值的输入框,但现在我想更新点击的值。
<tr ng-repeat="value in money">
<td><input type="text" ng-model="value.cent">
<button ng-controller="updateCentController"
ng-click="updateCent(product.id,value.cent)">Update</button>
</td>
</tr>
但是如何将更新的ng-model作为参数传递给ng-click?我做错了吗?
更新 -
问题已修复。它在我的控制器中
答案 0 :(得分:0)
一切都应该在控制器的相同范围内:
<div ng-controller="updateCentController">
<tr ng-repeat="value in money">
<td><input type="text" ng-model="value.cent">
<button
ng-click="updateCent(product.id,value.cent)">Update</button>
</td>
</tr>
</div>