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
875 views
in Technique[技术] by (71.8m points)

javascript - How to merge the objects having same id and corresponding array objects which are nested inside the object in a array

I am trying to merge the objects having same id and their corresponding array of objects having same value to that corresponding id of the object, which is nested inside the object. For example

[{
"id": "1",
"reference": "<p>test 1</p>",
"list": [
  {
    "text": "<p>text a</p>",
  },
  {
    "text": "<p>text b</p>",
  }
]},{
"id": "1",
"reference": "<p>test 1</p>",
"list": [
  {
    "text": "<p>text b</p>",
  }
]},{
"id": "2",
"reference": "<p>test 2</p>",
"list": [
  {
    "text": "<p>test e</p>",
  },
  {
    "text": "<p>text c</p>",
  },
  {
    "text": "<p>text c</p>",
  }
]},{
"id": "2",
"reference": "<p>test 2</p>",
"list": [
  {
    "text": "<p>test e</p>",
  },
  {
    "text": "<p>text c</p>",
  }
]},{
"id": "3",
"reference": "<p>test 3</p>",
"list": [
  {
    "text": "<p>text d</p>",
  }
]}]

The expected result is

[{
"id": "1",
"reference": "<p>test 1</p>",
"list": [
  {
    "text": "<p>text a</p>",
  },
  {
    "text": "<p>text b</p>",
  }
]},{
"id": "2",
"reference": "<p>test 2</p>",
"list": [
  {
    "text": "<p>text c</p>",
  },
  {
    "text": "<p>test e</p>",
  }
]},{
"id": "3",
"reference": "<p>test 3</p>",
"list": [
  {
    "text": "<p>text d</p>",
  }
]}]

I tried the following way, but didnot get the expected result. Dont know where I am going wrong. Please dont recommend the use of .reduce().

const originalArray = [
  {
    "id": "1",
    "reference": "<p>test 1</p>",
    "list": [
      {
        "text": "<p>text a</p>",
      },
      {
        "text": "<p>text b</p>",
      }
    ]
  },
  {
    "id": "1",
    "reference": "<p>test 1</p>",
    "list": [
      {
        "text": "<p>text b</p>",
      }
    ]
  },
  {
    "id": "2",
    "reference": "<p>test 2</p>",
    "list": [
      {
        "text": "<p>test e</p>",
      },
      {
        "text": "<p>text c</p>",
      },
      {
        "text": "<p>text c</p>",
      }
    ]
  },
  {
    "id": "2",
    "reference": "<p>test 2</p>",
    "list": [
      {
        "text": "<p>test e</p>",
      },
      {
        "text": "<p>text c</p>",
      }
    ]
  },
  {
    "id": "3",
    "reference": "<p>test 3</p>",
    "list": [
      {
        "text": "<p>text d</p>",
      }
    ]
  }
];

    var newArray = [];
    var lookupObject = {};
    for (var i in originalArray) {
      lookupObject[originalArray[i]["id"]] = originalArray[i];
    }
    for (i in lookupObject) {
      newArray.push(lookupObject[i]);
    }
    console.log(newArray)
question from:https://stackoverflow.com/questions/65871452/how-to-merge-the-objects-having-same-id-and-corresponding-array-objects-which-ar

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

1 Answer

0 votes
by (71.8m points)

You could use nested objects for keeping track of seen values.

const
    originalArray = [{ id: "1", reference: "<p>test 1</p>", list: [{ text: "<p>text a</p>" }, { text: "<p>text b</p>" }] }, { id: "1", reference: "<p>test 1</p>", list: [{ text: "<p>text b</p>" }] }, { id: "2", reference: "<p>test 2</p>", list: [{ text: "<p>test e</p>" }, { text: "<p>text c</p>" }, { text: "<p>text c</p>" }] }, { id: "2", reference: "<p>test 2</p>", list: [{ text: "<p>test e</p>" }, { text: "<p>text c</p>" }] }, { id: "3", reference: "<p>test 3</p>", list: [{ text: "<p>text d</p>" }] }],
    newArray = [],
    lookupObject = {};

for (const item of originalArray) {
    if (!lookupObject[item.id]) {
        lookupObject[item.id] = { text: {}, payload: { ...item, list: [] } };
        newArray.push(lookupObject[item.id].payload);
    }
    for (const { text } of item.list) {
        if (!lookupObject[item.id][text]) {
            lookupObject[item.id][text] = true;
            lookupObject[item.id].payload.list.push({ text });
        }
    }
}

console.log(newArray);
.as-console-wrapper { max-height: 100% !important; top: 0; }

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

...