javascript:Deep loop Json objects,and then output special formate simple objects, how?












-4














My JSON object data:



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
}


My question is: How do I translate the above JSON object to the below by using JavaScript?



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt_head": "bb",
"cnt_main_num1_time1": "mm",
"cnt_main_num1_time2": "kk",
"cnt_main_num2": "dd"
}


I tried using for(i in obj) {....} but failed!



Please help!










share|improve this question




















  • 6




    The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
    – CertainPerformance
    Dec 28 '18 at 3:06






  • 1




    If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
    – Alexander Nied
    Dec 28 '18 at 3:28
















-4














My JSON object data:



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
}


My question is: How do I translate the above JSON object to the below by using JavaScript?



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt_head": "bb",
"cnt_main_num1_time1": "mm",
"cnt_main_num1_time2": "kk",
"cnt_main_num2": "dd"
}


I tried using for(i in obj) {....} but failed!



Please help!










share|improve this question




















  • 6




    The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
    – CertainPerformance
    Dec 28 '18 at 3:06






  • 1




    If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
    – Alexander Nied
    Dec 28 '18 at 3:28














-4












-4








-4







My JSON object data:



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
}


My question is: How do I translate the above JSON object to the below by using JavaScript?



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt_head": "bb",
"cnt_main_num1_time1": "mm",
"cnt_main_num1_time2": "kk",
"cnt_main_num2": "dd"
}


I tried using for(i in obj) {....} but failed!



Please help!










share|improve this question















My JSON object data:



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
}


My question is: How do I translate the above JSON object to the below by using JavaScript?



{
"title": "aa",
"desc": ["i", "j", "k"],
"cnt_head": "bb",
"cnt_main_num1_time1": "mm",
"cnt_main_num1_time2": "kk",
"cnt_main_num2": "dd"
}


I tried using for(i in obj) {....} but failed!



Please help!







javascript json object






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 28 '18 at 3:26









Alexander Nied

3,7101928




3,7101928










asked Dec 28 '18 at 3:06









hijack

23339




23339








  • 6




    The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
    – CertainPerformance
    Dec 28 '18 at 3:06






  • 1




    If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
    – Alexander Nied
    Dec 28 '18 at 3:28














  • 6




    The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
    – CertainPerformance
    Dec 28 '18 at 3:06






  • 1




    If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
    – Alexander Nied
    Dec 28 '18 at 3:28








6




6




The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
– CertainPerformance
Dec 28 '18 at 3:06




The posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific roadblock you're running into a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the tour.
– CertainPerformance
Dec 28 '18 at 3:06




1




1




If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
– Alexander Nied
Dec 28 '18 at 3:28




If you have made attempts using for(i in obj) {....}, a better way to pose this problem would be to show these attempts, how they are failing, and ask for specific assistance.
– Alexander Nied
Dec 28 '18 at 3:28












1 Answer
1






active

oldest

votes


















1














You're basically asking how to flatten a nested object, with the keys representing the nested path. Here's a little recursive function that does just that:



const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});




Full snippet:






const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));








share|improve this answer























  • it solved my problem, thank you very much! Hope this can help some other guys too.
    – hijack
    2 days ago











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53953239%2fjavascript-deep-loop-json-objects-and-then-output-special-formate-simple-objects%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You're basically asking how to flatten a nested object, with the keys representing the nested path. Here's a little recursive function that does just that:



const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});




Full snippet:






const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));








share|improve this answer























  • it solved my problem, thank you very much! Hope this can help some other guys too.
    – hijack
    2 days ago
















1














You're basically asking how to flatten a nested object, with the keys representing the nested path. Here's a little recursive function that does just that:



const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});




Full snippet:






const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));








share|improve this answer























  • it solved my problem, thank you very much! Hope this can help some other guys too.
    – hijack
    2 days ago














1












1








1






You're basically asking how to flatten a nested object, with the keys representing the nested path. Here's a little recursive function that does just that:



const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});




Full snippet:






const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));








share|improve this answer














You're basically asking how to flatten a nested object, with the keys representing the nested path. Here's a little recursive function that does just that:



const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});




Full snippet:






const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));








const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));





const o = {
"title": "aa",
"desc": ["i", "j", "k"],
"cnt": {
"head": "bb",
"main": {
"num1": {
"time1": "mm",
"time2": "kk"
},
"num2": "dd"
}
}
};

const flatten = (o, pre) => Object.entries(o).reduce((a, [k, v]) => (
key = pre ? `${pre}_${k}`: k,
{
...a,
...Object.getPrototypeOf(v) !== Object.prototype ? {[key]: v} : flatten(v, key)
}), {});

console.log(flatten(o));






share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 28 '18 at 5:10

























answered Dec 28 '18 at 3:40









Robby Cornelissen

43.5k126990




43.5k126990












  • it solved my problem, thank you very much! Hope this can help some other guys too.
    – hijack
    2 days ago


















  • it solved my problem, thank you very much! Hope this can help some other guys too.
    – hijack
    2 days ago
















it solved my problem, thank you very much! Hope this can help some other guys too.
– hijack
2 days ago




it solved my problem, thank you very much! Hope this can help some other guys too.
– hijack
2 days ago


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53953239%2fjavascript-deep-loop-json-objects-and-then-output-special-formate-simple-objects%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Angular Downloading a file using contenturl with Basic Authentication

Olmecas

Can't read property showImagePicker of undefined in react native iOS