gpt4 book ai didi

javascript - 过滤数组 - 删除另一个数组中存在的值

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

<分区>

我有这个数组$scope.userEventData.selectedFlats 还有一个数组 $scope.flatsArray

我想从 $scope.userEventData.selectedFlats 中删除存在于 $scope.flatsArray 中的值。

我这样做了:

$scope.userEventData.selectedFlats = $scope.userEventData.selectedFlats.filter(function(f){
return !$scope.someObj.flatsArray.some(function(v){
return v.indexOf(f) >= 0;
})
})

但是我得到一个错误,说 v.indexOf 不是一个函数

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