js或者es6 已知id为222的对象数据,如何查询并返回该数据中parentId: 7对应的对象父节点数据的对象

要查询并返回id为222的对象数据中parentId为7对应的对象的父节点数据,我们需要遍历整个data数组,找到id为222的对象,并从其父节点中提取信息。由于您提供的data数组中的对象格式存在问题(例如,对象的键值对应该用花括号{}包围),我将先帮您修正格式,然后提供查询的代码。

修正后的data数组格式如下:

const data = [
    {
        "id": 1,
        "name": "常用指标",
        "parentId": 0,
        "signalTypeIds": "",
        "harmonicTimes": "",
        "children": [
            {
                "id": 7,
                "name": "相电压",
                "parentId": 1,
                "signalTypeIds": {
                    "0": 1,
                    "1": 94,
                    "2": 161,
                    "3": 228,
                    "4": 295
                },
                "harmonicTimes": "",
                "children": [
                    {
                        "children": undefined,
                        "harmonicTimes": "",
                        "id": 222,
                        "label": "A相",
                        "name": "A相",
                        "parentId": 7,
                        "signalTypeIds": { "0": 1, "1": 94, "2": 161, "3": 228, "4": 295 },
                        "value": "A相"
                    }
                ]
            }
        ]
    },
    {
        "id": 3,
        "name": "电压电流功率",
        "parentId": 0,
        "signalTypeIds": "",
        "harmonicTimes": "",
        "children": [
            {
                "id": 4,
                "name": "相电压",
                "parentId": 3,
                "signalTypeIds": {
                    "0": 1,
                    "1": 94,
                    "2": 161,
                    "3": 228,
                    "4": 295
                },
                "harmonicTimes": "",
                "children": []
            }
        ]
    }
];

现在,我们可以使用以下递归函数来查询并返回id为222的对象的父节点数据:

function findParentNodeById(id, data) {
    for (const item of data) {
        if (item.children) {
            for (const child of item.children) {
                if (child.children) {
                    // 递归搜索孙节点
                    const result = findParentNodeById(id, child.children);
                    if (result) return result; // 如果在孙节点中找到,返回结果
                } else if (child.id === id) {
                    // 找到id为222的对象,返回其父节点
                    return child;
                }
            }
        }
    }
    return null; // 如果没有找到,返回null
}

const parentNode = findParentNodeById(222, data);

console.log(parentNode); // 这将输出id为222的对象的父节点数据

这段代码定义了一个findParentNodeById函数,它接受两个参数:要搜索的id和要搜索的数组。函数内部,它遍历提供的数组及其所有子数组,查找id为指定值的对象。当找到id为222的对象时,它返回该对象的父节点数据。如果没有找到匹配的对象,函数返回null

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值