作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有这个对象:
let obj = {
matrimonyUrl: 'christian-grooms',
search_criteria:
'a:2:{s:6:"gender";s:4:"Male";s:9:"community";s:9:"Christian";}',
mothertongue: null,
religion: 'Christian',
caste: '',
country: null
};
我需要删除此对象中值为空的所有键/值对,即 ''
所以在上述情况下,caste: ''
属性应该被删除。
我试过:
R.omit(R.mapObjIndexed((val, key, obj) => val === ''))(obj);
但这并没有做任何事情。 reject
也不起作用。我做错了什么?
最佳答案
您可以使用 R.reject (或 R.filter )使用回调从对象中删除属性:
const obj = {
matrimonyUrl: 'christian-grooms',
search_criteria:
'a:2:{s:6:"gender";s:4:"Male";s:9:"community";s:9:"Christian";}',
mothertongue: null,
religion: 'Christian',
caste: '',
country: null
};
const result = R.reject(R.equals(''))(obj);
console.log(result);
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.26.1/ramda.js"></script>
关于javascript - lambda : How to remove keys in objects with empty values?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56618149/
我是一名优秀的程序员,十分优秀!