gpt4 book ai didi

javascript - AngularJS - 在数组中单步执行数组

转载 作者:行者123 更新时间:2023-12-03 09:53:39 25 4
gpt4 key购买 nike

angular.forEach($scope.lista, function(data) {
console.log(data);
$scope.listaCliente = data.listaClienteMaquina;
console.log($scope.listaCliente);
});

当我访问 $scope.listaCliente 数组时,它返回未定义,有人帮助我吗? :/

最佳答案

being that when I access the array of $scope.listaCliente, it returns undefined

我确信的一件事是,如果 $scope.listaCliente 是一个数组,那么您需要将其插入其中。目前,您每次循环运行时都会重新分配它。

$scope.listaCliente.push(data.listaClienteMaquina);

我希望你也像

一样在外部初始化了 数组
$scope.listaCliente = [];

关于javascript - AngularJS - 在数组中单步执行数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30807625/

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