Javascript - change a json object array values into multiple strings
I am receiving an json object from an API. What I do after (just for information: some string analysis of each key value), works great for 90% of these objects I receive as the key value is a string as show below.
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_campaign: 'media'}
But for 10% of them, some of the keys might be arrays, like below:
problematicJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'somethingelse' ],
utm_campaign: [ 'nicestuff', 'again' ] }
I would need to change the object above into this new object so that my script analysis, which requires pure strings, work.
Using javascript, how to "break" and recreate the object problematicJson into what's below
allStringsJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_medium = 'somethignelse',
utm_campaign: 'nicestuff',
utm_campaign = 'again' }
I also need to deal with a special case: when the values isndie the array are the same like below:
problematicJsonWithSimilarValues =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'redirection' ],
utm_campaign: [ 'lorem', 'lorem' ] }
So I need to write somethign where I don't get multiple lines where the key AND the vlaue are the same, like
allStringsJson =
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_medium = 'redirection',
utm_campaign: 'lorem',
utm_campaign = 'lorem' }
But I need to remove those similar lines from the new clean json object which would be for problematicJsonWithSimilarValues:
cleanObject =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_campaign = 'lorem' }
I tried a bunch of methods like reduce, split...to no success.
How to achieve this ?
javascript arrays json
|
show 1 more comment
I am receiving an json object from an API. What I do after (just for information: some string analysis of each key value), works great for 90% of these objects I receive as the key value is a string as show below.
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_campaign: 'media'}
But for 10% of them, some of the keys might be arrays, like below:
problematicJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'somethingelse' ],
utm_campaign: [ 'nicestuff', 'again' ] }
I would need to change the object above into this new object so that my script analysis, which requires pure strings, work.
Using javascript, how to "break" and recreate the object problematicJson into what's below
allStringsJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_medium = 'somethignelse',
utm_campaign: 'nicestuff',
utm_campaign = 'again' }
I also need to deal with a special case: when the values isndie the array are the same like below:
problematicJsonWithSimilarValues =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'redirection' ],
utm_campaign: [ 'lorem', 'lorem' ] }
So I need to write somethign where I don't get multiple lines where the key AND the vlaue are the same, like
allStringsJson =
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_medium = 'redirection',
utm_campaign: 'lorem',
utm_campaign = 'lorem' }
But I need to remove those similar lines from the new clean json object which would be for problematicJsonWithSimilarValues:
cleanObject =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_campaign = 'lorem' }
I tried a bunch of methods like reduce, split...to no success.
How to achieve this ?
javascript arrays json
3
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
You cannot have assignments likeutm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.
– connexo
Nov 22 '18 at 10:36
1
They look like Javascript objects. JSON is always aString
. There is no such thing as a JSON object. If it's an object, it's Javascript.
– connexo
Nov 22 '18 at 10:37
|
show 1 more comment
I am receiving an json object from an API. What I do after (just for information: some string analysis of each key value), works great for 90% of these objects I receive as the key value is a string as show below.
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_campaign: 'media'}
But for 10% of them, some of the keys might be arrays, like below:
problematicJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'somethingelse' ],
utm_campaign: [ 'nicestuff', 'again' ] }
I would need to change the object above into this new object so that my script analysis, which requires pure strings, work.
Using javascript, how to "break" and recreate the object problematicJson into what's below
allStringsJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_medium = 'somethignelse',
utm_campaign: 'nicestuff',
utm_campaign = 'again' }
I also need to deal with a special case: when the values isndie the array are the same like below:
problematicJsonWithSimilarValues =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'redirection' ],
utm_campaign: [ 'lorem', 'lorem' ] }
So I need to write somethign where I don't get multiple lines where the key AND the vlaue are the same, like
allStringsJson =
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_medium = 'redirection',
utm_campaign: 'lorem',
utm_campaign = 'lorem' }
But I need to remove those similar lines from the new clean json object which would be for problematicJsonWithSimilarValues:
cleanObject =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_campaign = 'lorem' }
I tried a bunch of methods like reduce, split...to no success.
How to achieve this ?
javascript arrays json
I am receiving an json object from an API. What I do after (just for information: some string analysis of each key value), works great for 90% of these objects I receive as the key value is a string as show below.
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_campaign: 'media'}
But for 10% of them, some of the keys might be arrays, like below:
problematicJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'somethingelse' ],
utm_campaign: [ 'nicestuff', 'again' ] }
I would need to change the object above into this new object so that my script analysis, which requires pure strings, work.
Using javascript, how to "break" and recreate the object problematicJson into what's below
allStringsJson =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_medium = 'somethignelse',
utm_campaign: 'nicestuff',
utm_campaign = 'again' }
I also need to deal with a special case: when the values isndie the array are the same like below:
problematicJsonWithSimilarValues =
{ ID: '0012784',
utm_source: 'website',
utm_medium: [ 'redirection', 'redirection' ],
utm_campaign: [ 'lorem', 'lorem' ] }
So I need to write somethign where I don't get multiple lines where the key AND the vlaue are the same, like
allStringsJson =
{ ID: '0012784',
utm_source: 'wesbite',
utm_medium: 'redirection',
utm_medium = 'redirection',
utm_campaign: 'lorem',
utm_campaign = 'lorem' }
But I need to remove those similar lines from the new clean json object which would be for problematicJsonWithSimilarValues:
cleanObject =
{ ID: '0012784',
utm_source: 'website',
utm_medium: 'redirection',
utm_campaign = 'lorem' }
I tried a bunch of methods like reduce, split...to no success.
How to achieve this ?
javascript arrays json
javascript arrays json
asked Nov 22 '18 at 10:31
MathieuMathieu
1,13362861
1,13362861
3
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
You cannot have assignments likeutm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.
– connexo
Nov 22 '18 at 10:36
1
They look like Javascript objects. JSON is always aString
. There is no such thing as a JSON object. If it's an object, it's Javascript.
– connexo
Nov 22 '18 at 10:37
|
show 1 more comment
3
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
You cannot have assignments likeutm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.
– connexo
Nov 22 '18 at 10:36
1
They look like Javascript objects. JSON is always aString
. There is no such thing as a JSON object. If it's an object, it's Javascript.
– connexo
Nov 22 '18 at 10:37
3
3
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
You cannot have assignments like
utm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.– connexo
Nov 22 '18 at 10:36
You cannot have assignments like
utm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.– connexo
Nov 22 '18 at 10:36
1
1
They look like Javascript objects. JSON is always a
String
. There is no such thing as a JSON object. If it's an object, it's Javascript.– connexo
Nov 22 '18 at 10:37
They look like Javascript objects. JSON is always a
String
. There is no such thing as a JSON object. If it's an object, it's Javascript.– connexo
Nov 22 '18 at 10:37
|
show 1 more comment
1 Answer
1
active
oldest
votes
This wouldn't work.
In JSON and in a Javascript Object each key ist unique. So you could not have more than one property named utm_medium
.
But you could use Array.join
, to create a single string concatinated with all of the elements in the array. Do something like:
utm_medium: Array.isArray(utm_medium) ? utm_medium.split(' ') : utm_medium
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428923%2fjavascript-change-a-json-object-array-values-into-multiple-strings%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
This wouldn't work.
In JSON and in a Javascript Object each key ist unique. So you could not have more than one property named utm_medium
.
But you could use Array.join
, to create a single string concatinated with all of the elements in the array. Do something like:
utm_medium: Array.isArray(utm_medium) ? utm_medium.split(' ') : utm_medium
add a comment |
This wouldn't work.
In JSON and in a Javascript Object each key ist unique. So you could not have more than one property named utm_medium
.
But you could use Array.join
, to create a single string concatinated with all of the elements in the array. Do something like:
utm_medium: Array.isArray(utm_medium) ? utm_medium.split(' ') : utm_medium
add a comment |
This wouldn't work.
In JSON and in a Javascript Object each key ist unique. So you could not have more than one property named utm_medium
.
But you could use Array.join
, to create a single string concatinated with all of the elements in the array. Do something like:
utm_medium: Array.isArray(utm_medium) ? utm_medium.split(' ') : utm_medium
This wouldn't work.
In JSON and in a Javascript Object each key ist unique. So you could not have more than one property named utm_medium
.
But you could use Array.join
, to create a single string concatinated with all of the elements in the array. Do something like:
utm_medium: Array.isArray(utm_medium) ? utm_medium.split(' ') : utm_medium
answered Nov 22 '18 at 10:38
smonkeysmonkey
664
664
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428923%2fjavascript-change-a-json-object-array-values-into-multiple-strings%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
3
You can't have duplicated key in JSON even if the values are different.
– William Chong
Nov 22 '18 at 10:34
ho I did not know that
– Mathieu
Nov 22 '18 at 10:34
I see, then my question is out:) I'll have to change my script so that when the vlaue is a string it does X and when the value is an array it split it into 2 strings...
– Mathieu
Nov 22 '18 at 10:35
You cannot have assignments like
utm_medium = 'somethignelse',
in Javascript objects. Also note that none of the code snippets you present are JSON.– connexo
Nov 22 '18 at 10:36
1
They look like Javascript objects. JSON is always a
String
. There is no such thing as a JSON object. If it's an object, it's Javascript.– connexo
Nov 22 '18 at 10:37