gpt4 book ai didi

javascript - Lodash Pull 不工作

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

如果我运行以下代码,长度不会改变:

console.log(files.length);
_.pull(files, [files[0], files[1]]);
console.log(files.length);

其中files是一个Array对象。鉴于我直接使用数组中的值构造第二个参数,难道 pull 不应该肯定找到要删除的匹配项吗?

最佳答案

我认为您不应该传入要“拉取”的值数组。文档建议它们应该是单独的参数,如下所示:

_.pull(files, files[0], files[1]);

https://lodash.com/docs#pull

关于javascript - Lodash Pull 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32235892/

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