Ramda:如何删除具有空值的对象中的键?

时间:2019-06-16 10:53:32

标签: javascript functional-programming javascript-objects ramda.js

我有这个对象:

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也不起作用。我在做什么错了?

4 个答案:

答案 0 :(得分:5)

您可以使用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>

答案 1 :(得分:0)

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);

答案 2 :(得分:0)

您可以为此使用纯JavaScript吗? (没有Ramda)

如果确实需要从对象中删除属性,则可以使用delete operator

for (const key in obj) {
    if (obj[key] === "") {
        delete obj[key];
    }
}

如果您喜欢单线:

Object.entries(obj).forEach(e => {if (e[1] === "") delete obj[e[0]]});

答案 3 :(得分:0)

我是那样做的, 但是我还需要排除可为空的值,而不仅仅是空值。

const obj = { a: null, b: '',  c: 'hello world' };

const newObj = R.reject(R.anyPass([R.isEmpty, R.isNil]))(obj);

<--仅C将在之后显示

newObj = { c: 'hello world' }

“基本拒绝”类似于过滤器,但不包括结果。做过滤器(不是(....),项目) 如果我的任何条件通过,它将拒绝特定密钥。

希望有帮助!