我试图从一个数组中获取existCount,该数组在选定的数组中有id。
但是出了点问题,我有一个项目id = 5493
但是existCount.length 0
我的 JS 代码:
var existCount = $scope.selectedScript.filter(function (item) {
return item.id === script.script_id;
});
console.log('existCount.length ', existCount.length);
console.log('$scope.selectedScript ', $scope.selectedScript);
console.log('script.script_id ', script.script_id);
Chrome 控制台视图:
https://i.stack.imgur.com/4UVWw.png
// 对不起,我忘记了第一行输出,但这一行在顶部,$scope.selectedScript
它是existCount.length = 0
我的错在哪里?
我该如何解决?
谢谢!