简体   繁体   English

Javascript:从更新对象数组更新嵌套的 object 值

[英]Javascript: update nested object values from array of update objects

I have a nested object with no pre-determinable path to child objects - example:我有一个嵌套的 object,没有可预先确定的子对象路径 - 例如:

{
    children : 
    [
        {
            children : 
            [
                {
                    children : 
                    [
                        {
                            id : "F100517B-D00F",
                            level : 4,
                            note : "update me",
                            parentId : "23A2A0DB-CCE3",
                            title : "change me"
                        }
                    ],
                    id : "23A2A0DB-CCE3",
                    level : 3,
                    note : "me too",
                    parentId : "a0H4H00000Roi",
                    title : "..and me"
                }
            ],
            id : "a0H4H00000Roi",
            level : 2,
            note : "none",
            parentId : "0064H00000ysL",
            title : "pending"
        },
        {
            "children" : 
            [
                {
                    id : "6A45E2EC-7825",
                    level : 3,
                    note : "|",
                    parentId : "a0H4H00000Roi",
                    title : ""
                }
            ],
            id : "a0H4H00000Roi",
            level : 2,
            note : "",
            parentId : "0064H00000ysL",
            title : "Change me"
        }
    ],
    id : "0064H00000ysL",
    level : 1,
    note : "hello",
    title : "Test Co"
}

Following this I generate a list of updates via a map function - sample results:在此之后,我通过 map function 生成更新列表 - 示例结果:


    [{
      content: "New Co",
      id: "0064H00000ysL",
      note: "Here's your update"
    }, {
      content: "91%",
      id: "a0H4H00000Roi",
      note: "New note here"
    }]

I need to iterate through the update object array and update nested object values, I've tried a few things but can't seem to quite nail it (my JS skill is a bit limited atm).我需要遍历更新 object 数组并更新嵌套的 object 值,我尝试了一些方法但似乎无法完全确定(我的 JS 技能有点受限 atm)。

Here's my last attempt, taken from the closest solution I found here: Javascript update values in nested object by array path这是我最后一次尝试,取自我在这里找到的最接近的解决方案: Javascript update values in nested object by array path

    var updates = $('div.node').map(function() {
    return {
              id: $(this).attr("id"),
              content: $(this).find('div.content').text(),
              note: $(this).find('div.note').text()
           };
       }).get();

const checkAndChange = (obj, update) => { //function to check id match for update
  if (update.id.includes(obj.id)) {
    obj.title = update.content;
    obj.note = update.note;
  }
}

const recursion = (obj, update) => {
   const o = obj;
   checkAndChange(o, update); // check if id exists update values
   if (o.children.length > 0) { //check if has children
        o.children.forEach(v => { //if has children do same recursion for children
        recursion(v, update);
      });
   }
   return o; //return updated object
}
var updatesLength = updates.length;
for(let it = 0; it < updatesLength; it++) {
    recursion(obj, updates[it]);
}

console.log(obj)

The indented map function at the top works fine but I get Uncaught TypeError: Cannot read properties of undefined (reading 'id')" when I try to loop though the update array and write back to the main object (obj).顶部缩进的 map function 工作正常,但当我尝试遍历更新数组并写回主 object (obj) 时,我得到了Uncaught TypeError: Cannot read properties of undefined (reading 'id')”

Any help appreciated任何帮助表示赞赏

You can use a redursive approach here, we'll create a function updateNestedObj() to apply the updates, applying to each object and any of its child objects:您可以在这里使用递归方法,我们将创建一个 function updateNestedObj()来应用更新,应用于每个 object 及其任何子对象:

 const objToUpdate = { children: [ { children: [ { children: [ { id: "F100517B-D00F", level: 4, note: "update me", parentId: "23A2A0DB-CCE3", title: "change me" } ], id: "23A2A0DB-CCE3", level: 3, note: "me too", parentId: "a0H4H00000Roi", title: "..and me" } ], id: "a0H4H00000Roi", level: 2, note: "none", parentId: "0064H00000ysL", title: "pending" }, { "children": [ { id: "6A45E2EC-7825", level: 3, note: "|", parentId: "a0H4H00000Roi", title: "" } ], id: "a0H4H00000Roi", level: 2, note: "", parentId: "0064H00000ysL", title: "Change me" } ], id: "0064H00000ysL", level: 1, note: "hello", title: "Test Co" } const updateArr = [{ content: "New Co", id: "0064H00000ysL", note: "Here's your update" }, { content: "91%", id: "a0H4H00000Roi", note: "New note here" }]; function updateNestedObj(obj, updates) { const updateToApply = updates.find(upd => upd.id === obj.id); if (updateToApply) { obj.title = updateToApply.content; obj.note = updateToApply.note; } // Apply updates to any child objects for(let k in obj) { if (typeof(obj[k]) === 'object') { updateNestedObj(obj[k], updates); } } } updateNestedObj(objToUpdate, updateArr); console.log(objToUpdate)
 .as-console-wrapper { max-height: 100%;important: top; 0; }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM