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;








0















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 ]









share|improve this question






























    0















    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 ]









    share|improve this question


























      0












      0








      0








      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 ]









      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 19:01









      Shakespear

      1,07231321




      1,07231321










      asked Mar 23 at 13:55









      Jason VriendsJason Vriends

      82




      82






















          2 Answers
          2






          active

          oldest

          votes


















          0














          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;

          ;





          share|improve this answer























          • This worked. Amazing. Thank you!

            – Jason Vriends
            Mar 23 at 14:17


















          0














          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;

          ;





          share|improve this answer























            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%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









            0














            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;

            ;





            share|improve this answer























            • This worked. Amazing. Thank you!

              – Jason Vriends
              Mar 23 at 14:17















            0














            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;

            ;





            share|improve this answer























            • This worked. Amazing. Thank you!

              – Jason Vriends
              Mar 23 at 14:17













            0












            0








            0







            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;

            ;





            share|improve this answer













            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;

            ;






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 23 at 14:11









            hoangdvhoangdv

            2,5071716




            2,5071716












            • 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





            This worked. Amazing. Thank you!

            – Jason Vriends
            Mar 23 at 14:17













            0














            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;

            ;





            share|improve this answer



























              0














              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;

              ;





              share|improve this answer

























                0












                0








                0







                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;

                ;





                share|improve this answer













                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;

                ;






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 14:23









                Kunal MukherjeeKunal Mukherjee

                2,49631229




                2,49631229



























                    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.




                    draft saved


                    draft discarded














                    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





















































                    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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해