gpt4 book ai didi

javascript - ramda js 与 find、pick 和 trim 值组合

转载 作者:行者123 更新时间:2023-12-01 01:51:15 26 4
gpt4 key购买 nike

const obj = [
{id: 1, name:'name1 ', age: 26, city: 'city1 '},
{id: 2, name:'name2', age: 24, city: 'city2 '},
{id: 3, name:' name3', age: 28, city: ' city3 '},
{id: 4, name:'name4 ', age: 25, city: 'city4 '}
]

我有这样的功能

id 可能是 1,2,3,4...或...'All'

getData(id, obj) {
if(id && id !=='All'){
const res = obj.find((o) => o.id === id)
return `${res.name.trim()} ${res.city.trim()}`
} else if(id === 'All') {
return 'All'
}
return ''
}

getData(1, obj) // name1 city1
getData('All', obj) // All

我尝试过ramda js来转换上面的代码,

getData(id, obj) {
return (id !== 'All') ? compose(R.find(R.propEq('id', id)))(obj) : 'All'
}

预期的o/p是

getData(1, obj) => 'name1 city1'
getData('All', obj) => 'All'
getData('', obj) => ''

如何使用 ramda 选取(名称、城市)并 trim 值。任何帮助

最佳答案

我会做类似下面的事情

const getData = (id, obj) =>
id == 'All' : 'All'
? R.pipe(
R.find(R.propEq('id', id)), // {id: ..., name: ' foo', city: 'bar '} | null
R.ifElse(
R.isNil, // if null
() => '', // then ''
R.pipe( // else
R.props(['name', 'city']), // [' foo', 'bar ']
R.map(R.trim) // ['foo', 'bar']
R.join(' ') // 'foo bar'
)
)
)(obj)

希望这对你有帮助:)

关于javascript - ramda js 与 find、pick 和 trim 值组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51482543/

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