最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Lodash , check if object exists and property exists and is true - Stack Overflow

programmeradmin0浏览0评论

Good morning . I need help on checking if object exists and certain propertie have value of true. Ex:

validations={
  "DSP_INDICADOR": {
    "required": true
  },
  "EMPRESA": {
    "required": true
  },
.....
  "NOME_AVAL": {
    "required": false,
    "notEqualToField": "NOME"
  }
}

and then check for required:true

Thanks in advance

Good morning . I need help on checking if object exists and certain propertie have value of true. Ex:

validations={
  "DSP_INDICADOR": {
    "required": true
  },
  "EMPRESA": {
    "required": true
  },
.....
  "NOME_AVAL": {
    "required": false,
    "notEqualToField": "NOME"
  }
}

and then check for required:true

Thanks in advance

Share Improve this question asked Dec 19, 2017 at 10:43 Leonel Matias DomingosLeonel Matias Domingos 2,0806 gold badges35 silver badges54 bronze badges 1
  • _.filter(validations, function(o) { return o.required; }) ? – sinisake Commented Dec 19, 2017 at 10:47
Add a ment  | 

2 Answers 2

Reset to default 9

How about simply using

_.get(validations, "EMPRESA.required"); in lodash

In this way we can fetch upto any depth, and we don't need to assure with consecutive && again and again that the immediate parent level exists first for each child level.

You can use this _.get in a more programmatic way with a default value (if the path not exist) and a array of keys in proper sequence for lookup. So, dynamically you can pass array of keys to fetch values and you don't need to create a string for that joined by . like "EMPRESA.required" (in the case your input for N depth lookup path is not a string)

Here is an example:

let obj = {a1: {a2: {a3: {a4: {a5: {value: 101}}}}}};

let path1 = ['a1', 'a2', 'a3', 'a4', 'a5', 'value'], //valid
    path2 = ['a1', 'a2', 'a3', 'a4'], //valid
    path3 = ['a1', 'a3', 'a2', 'x', 'y', 'z']; //invalid
    
console.log(`Lookup for ${path1.join('->')}: `, _.get(obj, path1));
console.log(`Lookup for ${path2.join('->')}: `, _.get(obj, path2));
console.log(`Lookup for ${path3.join('->')}: `, _.get(obj, path3));
console.log(`Lookup for ${path3.join('->')} with default Value: `, _.get(obj, path3, 404));
<script src="https://cdnjs.cloudflare./ajax/libs/lodash.js/4.17.10/lodash.min.js"></script>

I guess this would be it.

if (validations["EMPRESA"] && validations["EMPRESA"].required) {
  console.log(true)
} else {
  console.log(false)
}
发布评论

评论列表(0)

  1. 暂无评论