How to create a nested object from req.query?Detecting an undefined object propertyWhat is the most efficient way to deep clone an object in JavaScript?Create ArrayList from arrayHow do I check if an array includes an object in JavaScript?How to append something to an array?Checking if a key exists in a JavaScript object?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Find object by id in an array of JavaScript objectsIterate through object properties
What was the ring Varys took off?
Does "Software Updater" only update software installed using apt, or also software installed using snap?
Is there any good reason to write "it is easy to see"?
Fixed width with p doesn't work
What information do scammers need to withdraw money from an account?
Where to find every-day healthy food near Heathrow Airport?
Were any toxic metals used in the International Space Station?
Why can't I share a one use code with anyone else?
Is this a group? If so, what group is it?
Is Valonqar prophecy unfulfilled?
Meaning of "work with shame"
Should generated documentation be stored in a Git repository?
Is it possible to create different colors in rocket exhaust?
Are there any sonatas with only two sections?
How might a landlocked lake become a complete ecosystem?
Adding labels and comments to a matrix
The meaning of the Middle English word “king”
Is this possible when it comes to the relations of P, NP, NP-Hard and NP-Complete?
Segmentation fault when popping x86 stack
How to insert a name of the file as a header of a file?
What is this old US Air Force plane?
Acronyms in HDD specification
How can we allow remote players to effectively interact with a physical tabletop battle-map?
How was this character able to keep fighting effectively in S8E5 of Game of Thrones?
How to create a nested object from req.query?
Detecting an undefined object propertyWhat is the most efficient way to deep clone an object in JavaScript?Create ArrayList from arrayHow do I check if an array includes an object in JavaScript?How to append something to an array?Checking if a key exists in a JavaScript object?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Find object by id in an array of JavaScript objectsIterate through object properties
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to create an object that will be used to post to an Event Grid. There are top-level properties such as EventType, Subject, DataVersion, and EventTime. However, I would like anything else provided to req.query to be added as a child to the data property. Currently, the below code only adds the last item in req.query vs keep adding/appending to it.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case 'eventtype':
event[0].eventtype = myValue;
break;
case 'subject':
event[0].subject = myValue;
break;
default:
event[0].data = [myKey]: myValue ;
break;
Output
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: 'red' ]
Desired Outcome
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: red, power: on ]
arrays node.js object
add a comment |
I am trying to create an object that will be used to post to an Event Grid. There are top-level properties such as EventType, Subject, DataVersion, and EventTime. However, I would like anything else provided to req.query to be added as a child to the data property. Currently, the below code only adds the last item in req.query vs keep adding/appending to it.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case 'eventtype':
event[0].eventtype = myValue;
break;
case 'subject':
event[0].subject = myValue;
break;
default:
event[0].data = [myKey]: myValue ;
break;
Output
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: 'red' ]
Desired Outcome
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: red, power: on ]
arrays node.js object
add a comment |
I am trying to create an object that will be used to post to an Event Grid. There are top-level properties such as EventType, Subject, DataVersion, and EventTime. However, I would like anything else provided to req.query to be added as a child to the data property. Currently, the below code only adds the last item in req.query vs keep adding/appending to it.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case 'eventtype':
event[0].eventtype = myValue;
break;
case 'subject':
event[0].subject = myValue;
break;
default:
event[0].data = [myKey]: myValue ;
break;
Output
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: 'red' ]
Desired Outcome
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: red, power: on ]
arrays node.js object
I am trying to create an object that will be used to post to an Event Grid. There are top-level properties such as EventType, Subject, DataVersion, and EventTime. However, I would like anything else provided to req.query to be added as a child to the data property. Currently, the below code only adds the last item in req.query vs keep adding/appending to it.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case 'eventtype':
event[0].eventtype = myValue;
break;
case 'subject':
event[0].subject = myValue;
break;
default:
event[0].data = [myKey]: myValue ;
break;
Output
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: 'red' ]
Desired Outcome
eventTime: 2019-03-23T13:47:26.069Z,
dataVersion: '2.0',
eventtype: 'build',
subject: 'build' },
data: color: red, power: on ]
arrays node.js object
arrays node.js object
edited Mar 23 at 19:01
Shakespear
1,07231321
1,07231321
asked Mar 23 at 13:55
Jason VriendsJason Vriends
82
82
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Define data as a object, then append key and value to the data.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
if (event[0].data)
event[0].data[myKey] = myValue;
else
event[0].data = [myKey]: myValue
break;
;
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
add a comment |
You can also try with Object.assign which will iterate over own properties of the object and the new property which is necessary.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
event[0].data = Object.assign(event[0].data, myKey: myValue );
break;
;
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%2f55314424%2fhow-to-create-a-nested-object-from-req-query%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Define data as a object, then append key and value to the data.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
if (event[0].data)
event[0].data[myKey] = myValue;
else
event[0].data = [myKey]: myValue
break;
;
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
add a comment |
Define data as a object, then append key and value to the data.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
if (event[0].data)
event[0].data[myKey] = myValue;
else
event[0].data = [myKey]: myValue
break;
;
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
add a comment |
Define data as a object, then append key and value to the data.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
if (event[0].data)
event[0].data[myKey] = myValue;
else
event[0].data = [myKey]: myValue
break;
;
Define data as a object, then append key and value to the data.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
if (event[0].data)
event[0].data[myKey] = myValue;
else
event[0].data = [myKey]: myValue
break;
;
answered Mar 23 at 14:11
hoangdvhoangdv
2,5071716
2,5071716
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
add a comment |
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
This worked. Amazing. Thank you!
– Jason Vriends
Mar 23 at 14:17
add a comment |
You can also try with Object.assign which will iterate over own properties of the object and the new property which is necessary.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
event[0].data = Object.assign(event[0].data, myKey: myValue );
break;
;
add a comment |
You can also try with Object.assign which will iterate over own properties of the object and the new property which is necessary.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
event[0].data = Object.assign(event[0].data, myKey: myValue );
break;
;
add a comment |
You can also try with Object.assign which will iterate over own properties of the object and the new property which is necessary.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
event[0].data = Object.assign(event[0].data, myKey: myValue );
break;
;
You can also try with Object.assign which will iterate over own properties of the object and the new property which is necessary.
let parms = req.query;
for (var i in parms)
let myKey = i;
let myValue = req.query[i];
switch (i)
case "eventtype":
event[0].eventtype = myValue;
break;
case "subject":
event[0].subject = myValue;
break;
default:
event[0].data = Object.assign(event[0].data, myKey: myValue );
break;
;
answered Mar 23 at 14:23
Kunal MukherjeeKunal Mukherjee
2,49631229
2,49631229
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%2f55314424%2fhow-to-create-a-nested-object-from-req-query%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