gpt4 book ai didi

javascript - React 过滤器然后交换数组元素

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

  const filterData = apiData.filter(data => {
return this.shouldDisplayItem(
data,
[this.state.searchValue],
this.state.filterKeyValue
);
}).filter(i => i.vid),
x = 0,
y = apiData.map(i => i.vid).indexOf(markerId);
A[x] = A.splice(y, 1, A[x])[0];

例如,我有一个 array = [0,1,2,3,4,5,6,7,8,9]。首先我想过滤大于 2 的值,然后我想通过索引号交换 7 和 8。

在最初的原始项目中,我正在做一些过滤器,而不是在第二个过滤器上我正在交换两个数组对象我们可以一次性过滤两次相同的数组吗?

最佳答案

您可以使用filter 来过滤掉数组,然后使用prototypeswap

Array.prototype.swap = function (swapFirst,swapSecond) {
var x = this.findIndex(a=> a === swapFirst);
var y = this.findIndex(a=> a === swapSecond);
var b = this[y];
this[y] = this[x];
this[x] = b;
return this;

}


var apiData = [0,1,2,3,4,5,6,7,8,9];
var filtered= apiData.filter(a=> a > 2).swap(7,8);
console.log(filtered);

关于javascript - React 过滤器然后交换数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53718232/

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