ng-init.. =false; (item <- this)
最初没有来自compareProducts的值,但是如果我编辑标签然后刷新,则保存该值。 你有什么想法如何解决这个问题?或者一些有用的信息与我分享一下?非常感谢
<tr class="col-new3">
<td>Value</td>
<td ng-repeat="item in list"
ng-init="editCorrectValue = false; item.correctedMonthlyValue=item.comparedProducts.value"
data-ng-click="editCorrectValue = true; focusInput($event)" class="add-comma is-editable">
<input ng-blur="editCorrectValue = false" ng-show="editCorrectValue" data-ng-model="item.correctedMonthlyValue" type="number">
<span ng-show="!editCorrectValue">{{'{{ item.correctedMonthlyValue }}'}}</span>
</td>
</tr>