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

javascript - i want apply JSON.parse(school) only in school property. How will i achieve this in array of object?


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

1 Answer

0 votes
by (71.8m points)

What you entered wasn't valid JavaScript. When you include a quote (") in a string, you need to escape it with a slash so that it knows how to differentiate between the start and the end of the string and the quote contained in your string - like this: "string containing "quotes""

But assuming you meant to properly escape the JSON strings, you could try this:

let objects = [
  {
    name: "Manish",
    school: "{"name":"modal","email":"gmail"}",
    id: 21,
    stats: true,
    user_id: 2,
  },
  {
    name: "Ramesh",
    school: "{"name":"kamla","email":"yahoo"}",
    id: 10,
    stats: true,
    user_id: 3,
  },
];

const converted = objects.map((item) => ({
  ...item, school: JSON.parse(item.school)
}));

console.log(converted);

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

...