gpt4 book ai didi

javascript - 是否有 lodash 函数或 'lodash way' 来执行条件 _.map?

转载 作者:搜寻专家 更新时间:2023-11-01 05:20:07 30 4
gpt4 key购买 nike

基本上,我有一个对象数组,我只想更新数组中满足条件的对象。我想知道是否有解决该问题的有效方法。现在我正在使用 lodash。这是一个例子:

var things = [
{id: 1, type: "a", value: "100"},
{id: 2, type: "b", value: "300"},
{id: 3, type: "a", value: "100"}
];
var results = _.map(things, function (thing) {
if(thing.type === "a") {
thing.value = "500";
}
return thing;
});
// => results should be [{id: 1, type: "a", value: "500"}, {id: 2, type: "b", value: "300"}, {id: 3, type: "a", value: "500"}];

最佳答案

这里不需要使用map方法。

您可以通过向其传递一个回调函数来使用一个简单的forEach函数。

var results = _.forEach(things, function (thing) { 
if(thing.type === "a") {
thing.value = "500";
}
});

关于javascript - 是否有 lodash 函数或 'lodash way' 来执行条件 _.map?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47231924/

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