Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
255 views
in Technique[技术] by (71.8m points)

javascript - How to search for a value in Object which contains sub objects with as array values

I have json object and i want to search for a key in it and return that Object key as a result if the key matches. consider the following example

obj = {
    "India": {
        "Karnataka": ["Bangalore", "Mysore"],
        "Maharashtra": ["Mumbai", "Pune"]
    },
    "USA": {
        "Texas": ["Dallas", "Houston"],
        "IL": ["Chicago", "Aurora", "Pune"]

    }
}
input: Pune
output: ['Maharashtra','IL']
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can try this-

const obj = {
  "India" : {
    "Karnataka" : ["Bangalore", "Mysore"],
    "Maharashtra" : ["Mumbai", "Pune"]
  },
  "USA" : {
    "Texas" : ["Dallas", "Houston"],
    "IL" : ["Chicago", "Aurora", "Pune"]
  }
};


const search = (obj, keyword) => {
  return Object.values(obj).reduce((acc, curr) => {
      Object.entries(curr).forEach(([key, value]) => {
        if (value.indexOf(keyword) > -1) {
          acc.push(key);
        }
      });
    return acc;
  }, []);
}

console.log(search(obj, 'Pune'));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...