如何从嵌套对象中获取键值 [英] How to get the key value from nested object

查看:169
本文介绍了如何从嵌套对象中获取键值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在下面的对象,我试图获取所有的id值。

I am having below object where I am trying to get all the id values.

[{
    "type": "test",
    "id": "100",
    "values": {
        "name": "Alpha"
    },
    "validations": []
}, {
    "type": "services",
    "validations": [{
        "id": "200",
        "name": "John",
        "selection": [{
            "id": "300",
            "values": {
                "name": "Blob"
            }
        }]
    }]
}]

使用下面的代码,我只得到第一个id值。有没有办法从嵌套对象中获取所有id值而不使用任何外部模块。

Using the below code, I am getting only the first id value. Is there any way to get all the id values from the nested object without using any external module.

for (var prop in obj) {
            console.log(prop)
            if (prop === key) {
                set.push(prop);
            }
        }

预期产出

[100,200,300]     //all id values


推荐答案

您可以使用下面的JavaScript函数来获取嵌套属性:

You can use a JavaScript function like below to get the nested properties:

function findProp(obj, key, out) {
    var i,
        proto = Object.prototype,
        ts = proto.toString,
        hasOwn = proto.hasOwnProperty.bind(obj);

    if ('[object Array]' !== ts.call(out)) out = [];

    for (i in obj) {
        if (hasOwn(i)) {
            if (i === key) {
                out.push(obj[i]);
            } else if ('[object Array]' === ts.call(obj[i]) || '[object Object]' === ts.call(obj[i])) {
                findProp(obj[i], key, out);
            }
        }
    }

    return out;
}

检查这个小提琴是一个有效的解决方案。

Check this Fiddle for a working solution.

这篇关于如何从嵌套对象中获取键值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆