gpt4 book ai didi

javascript - angularjs $watch 获取已更改数组项的索引

转载 作者:行者123 更新时间:2023-11-30 12:25:39 26 4
gpt4 key购买 nike

我有一个由多个对象组成的数组。

    $scope.userCompetences = [];

现在我深入观察这个阵列以检查变化:

    $scope.$watch('userCompetences', function (newVal, oldValue) {
if(oldValue.length > 0)
{
var i = 0; // do something
}
}, true);

现在我的问题是如何获取数组中已更改的对象的索引?

最佳答案

发生这种情况时,您是否尝试过只调用一个函数?

<div ng-repeat="item in userCompetences">
<input type="text" ng-model="item.name" ng-change="change_function($index)"/>
</div>

关于javascript - angularjs $watch 获取已更改数组项的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29493426/

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