gpt4 book ai didi

javascript - 通过lodash中的键过滤对象

转载 作者:数据小太阳 更新时间:2023-10-29 04:00:56 25 4
gpt4 key购买 nike

我编写了下面的函数来返回对象中与特定模式匹配的所有键。这看起来真的很迂回,因为lodash中没有对象的过滤功能,当你使用它时,所有的键都会丢失。这是使用 lodash 过滤对象键的唯一方法吗?

export function keysThatMatch (pattern) {
return (data) => {
let x = _.chain(data)
.mapValues((value, key) => {
return [{
key: key,
value: value
}]
})
.values()
.filter(data => {
return data[0].key.match(pattern)
})
.zipWith(data => {
let tmp = {}
tmp[data[0].key] = data[0].value
return tmp
})
.value()
return _.extend.apply(null, x)
}
}

最佳答案

您可以使用 lodash 中的 pickBy 来执行此操作。 ( https://lodash.com/docs#pickBy )

此示例返回一个对象,其键以“a”开头

var object = { 'a': 1, 'b': '2', 'c': 3, 'aa': 5};

o2 = _.pickBy(object, function(v, k) {
return k[0] === 'a';
});

o2 === {"a":1,"aa":5}

关于javascript - 通过lodash中的键过滤对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35370646/

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