gpt4 book ai didi

AngularJS ng-repeat with ng-change

转载 作者:行者123 更新时间:2023-12-01 06:50:27 27 4
gpt4 key购买 nike

我试图有一种方法来捕捉 ngRepeat 内部变量的变化,以便我可以修改其他属性。所以我有这个 HTML:

<tr ng-repeat="variable in variables">
<td>
<div ng-if="....">
<textarea ng-model="variable.u_field_values" ng-change="onChange(variable)">

每当他们修改该文本区域中的文本时,我都需要更新正在使用的当前变量的另一个值。不过,更改方法似乎永远不会被解雇。

最佳答案

试着把 ng-change领先于ng-model :
<textarea ng-change="onChange(variable)" ng-model="variable.u_field_values">
我发现顺序有时很重要。不知道为什么,虽然..

关于AngularJS ng-repeat with ng-change,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24786403/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com