Set parameter in FormData for dynamic fields (Javascript)How do JavaScript closures work?What is the most efficient way to deep clone an object in JavaScript?How do I remove a property from a JavaScript object?Which equals operator (== vs ===) should be used in JavaScript comparisons?Set a default parameter value for a JavaScript functionHow do I include a JavaScript file in another JavaScript file?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?

What detail can Hubble see on Mars?

As a GM, is it bad form to ask for a moment to think when improvising?

Is crescere the correct word meaning to to grow or cultivate?

Is the US ESTA (Electronic System for Travel Authorization) a visa?

How did the Force make Luke hard to hit in the Battle of Yavin?

Justification of physical currency in an interstellar civilization?

What does のそ mean on this picture?

Given a safe domain, are subdirectories safe as well?

Playing Doublets with the Primes

Huffman Code in C++

What is a common way to tell if an academic is "above average," or outstanding in their field? Is their h-index (Hirsh index) one of them?

The selling of the sheep

What word describes the sound of an instrument based on the shape of the waveform of its sound?

Dimmer switch not connected to ground

Why would a military not separate its forces into different branches?

How important are good looking people in a novel/story?

Dual frame in Riemannian metrics.

Do quaternary sulfur dications exist?

Collision domain question

What happens if I accidentally leave an app running and click "Install Now" in Software Updater?

TIP120 Transistor + Solenoid Failing Randomly

How to speed up large double sums in a table?

How to use awk to extract data from a file based on the content of another file?

How did the Apollo guidance computer handle parity bit errors?



Set parameter in FormData for dynamic fields (Javascript)


How do JavaScript closures work?What is the most efficient way to deep clone an object in JavaScript?How do I remove a property from a JavaScript object?Which equals operator (== vs ===) should be used in JavaScript comparisons?Set a default parameter value for a JavaScript functionHow do I include a JavaScript file in another JavaScript file?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am getting an issue on setting up the form data for dynamic fields included input[type="file"].



In my word, Dynamic fields mean generating the fields with the loop of an array.



I tried the for loop than data is not going to the server.



I am using Vue and Vuex.



Only the value from the last loop is going on the database.



let formdata = new FormData();
for(var i = 0; i< this.assignmentForm.length; i++)
formdata.append('file', this.$refs.assignmentFile[i].files[0]);
formdata.append('name', this.$refs.assignmentName[i].value);
formdata.append('comment', this.$refs.assignmentComment[i].value);
formdata.append('assignment_solution', this.respondId);










share|improve this question






























    0















    I am getting an issue on setting up the form data for dynamic fields included input[type="file"].



    In my word, Dynamic fields mean generating the fields with the loop of an array.



    I tried the for loop than data is not going to the server.



    I am using Vue and Vuex.



    Only the value from the last loop is going on the database.



    let formdata = new FormData();
    for(var i = 0; i< this.assignmentForm.length; i++)
    formdata.append('file', this.$refs.assignmentFile[i].files[0]);
    formdata.append('name', this.$refs.assignmentName[i].value);
    formdata.append('comment', this.$refs.assignmentComment[i].value);
    formdata.append('assignment_solution', this.respondId);










    share|improve this question


























      0












      0








      0








      I am getting an issue on setting up the form data for dynamic fields included input[type="file"].



      In my word, Dynamic fields mean generating the fields with the loop of an array.



      I tried the for loop than data is not going to the server.



      I am using Vue and Vuex.



      Only the value from the last loop is going on the database.



      let formdata = new FormData();
      for(var i = 0; i< this.assignmentForm.length; i++)
      formdata.append('file', this.$refs.assignmentFile[i].files[0]);
      formdata.append('name', this.$refs.assignmentName[i].value);
      formdata.append('comment', this.$refs.assignmentComment[i].value);
      formdata.append('assignment_solution', this.respondId);










      share|improve this question
















      I am getting an issue on setting up the form data for dynamic fields included input[type="file"].



      In my word, Dynamic fields mean generating the fields with the loop of an array.



      I tried the for loop than data is not going to the server.



      I am using Vue and Vuex.



      Only the value from the last loop is going on the database.



      let formdata = new FormData();
      for(var i = 0; i< this.assignmentForm.length; i++)
      formdata.append('file', this.$refs.assignmentFile[i].files[0]);
      formdata.append('name', this.$refs.assignmentName[i].value);
      formdata.append('comment', this.$refs.assignmentComment[i].value);
      formdata.append('assignment_solution', this.respondId);







      javascript vue.js vuex






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 7:17









      Styx

      5,74762738




      5,74762738










      asked Mar 23 at 4:46









      Vick SainVick Sain

      6711




      6711






















          2 Answers
          2






          active

          oldest

          votes


















          0














          You're correctly using .append instead of .set, but you forgot that variables should be arrays, thus their keys should be file[], name[], comment[] and assignment_solution[] respectively.



          This way your backend will correctly recognize that they are indeed arrays.






          share|improve this answer






























            0














            You are appending multiple files using the same name. Only the last addition will reach your server.



            You have at least 2 options:




            1. Give unique names to each field. Something similar to this



              formdata.append('file' + i, this.$refs.assignmentFile[i].files[0]);



            Notice the concatenation of file with the index variable.




            1. Use the array notation for the fields’ names. This is compatible with how PHP handled POST variables.



              formdata.append('file[]', this.$refs.assignmentFile[i].files[0]);



            Notice the square brackets in the name file[].



            You need to do this for all the fields: file, name, comments.






            share|improve this answer























            • I did same. But not working.

              – Vick Sain
              Mar 23 at 14:46











            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%2f55310687%2fset-parameter-in-formdata-for-dynamic-fields-javascript%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














            You're correctly using .append instead of .set, but you forgot that variables should be arrays, thus their keys should be file[], name[], comment[] and assignment_solution[] respectively.



            This way your backend will correctly recognize that they are indeed arrays.






            share|improve this answer



























              0














              You're correctly using .append instead of .set, but you forgot that variables should be arrays, thus their keys should be file[], name[], comment[] and assignment_solution[] respectively.



              This way your backend will correctly recognize that they are indeed arrays.






              share|improve this answer

























                0












                0








                0







                You're correctly using .append instead of .set, but you forgot that variables should be arrays, thus their keys should be file[], name[], comment[] and assignment_solution[] respectively.



                This way your backend will correctly recognize that they are indeed arrays.






                share|improve this answer













                You're correctly using .append instead of .set, but you forgot that variables should be arrays, thus their keys should be file[], name[], comment[] and assignment_solution[] respectively.



                This way your backend will correctly recognize that they are indeed arrays.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 7:20









                StyxStyx

                5,74762738




                5,74762738























                    0














                    You are appending multiple files using the same name. Only the last addition will reach your server.



                    You have at least 2 options:




                    1. Give unique names to each field. Something similar to this



                      formdata.append('file' + i, this.$refs.assignmentFile[i].files[0]);



                    Notice the concatenation of file with the index variable.




                    1. Use the array notation for the fields’ names. This is compatible with how PHP handled POST variables.



                      formdata.append('file[]', this.$refs.assignmentFile[i].files[0]);



                    Notice the square brackets in the name file[].



                    You need to do this for all the fields: file, name, comments.






                    share|improve this answer























                    • I did same. But not working.

                      – Vick Sain
                      Mar 23 at 14:46















                    0














                    You are appending multiple files using the same name. Only the last addition will reach your server.



                    You have at least 2 options:




                    1. Give unique names to each field. Something similar to this



                      formdata.append('file' + i, this.$refs.assignmentFile[i].files[0]);



                    Notice the concatenation of file with the index variable.




                    1. Use the array notation for the fields’ names. This is compatible with how PHP handled POST variables.



                      formdata.append('file[]', this.$refs.assignmentFile[i].files[0]);



                    Notice the square brackets in the name file[].



                    You need to do this for all the fields: file, name, comments.






                    share|improve this answer























                    • I did same. But not working.

                      – Vick Sain
                      Mar 23 at 14:46













                    0












                    0








                    0







                    You are appending multiple files using the same name. Only the last addition will reach your server.



                    You have at least 2 options:




                    1. Give unique names to each field. Something similar to this



                      formdata.append('file' + i, this.$refs.assignmentFile[i].files[0]);



                    Notice the concatenation of file with the index variable.




                    1. Use the array notation for the fields’ names. This is compatible with how PHP handled POST variables.



                      formdata.append('file[]', this.$refs.assignmentFile[i].files[0]);



                    Notice the square brackets in the name file[].



                    You need to do this for all the fields: file, name, comments.






                    share|improve this answer













                    You are appending multiple files using the same name. Only the last addition will reach your server.



                    You have at least 2 options:




                    1. Give unique names to each field. Something similar to this



                      formdata.append('file' + i, this.$refs.assignmentFile[i].files[0]);



                    Notice the concatenation of file with the index variable.




                    1. Use the array notation for the fields’ names. This is compatible with how PHP handled POST variables.



                      formdata.append('file[]', this.$refs.assignmentFile[i].files[0]);



                    Notice the square brackets in the name file[].



                    You need to do this for all the fields: file, name, comments.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 23 at 7:22









                    Radu DițăRadu Diță

                    4,36311321




                    4,36311321












                    • I did same. But not working.

                      – Vick Sain
                      Mar 23 at 14:46

















                    • I did same. But not working.

                      – Vick Sain
                      Mar 23 at 14:46
















                    I did same. But not working.

                    – Vick Sain
                    Mar 23 at 14:46





                    I did same. But not working.

                    – Vick Sain
                    Mar 23 at 14:46

















                    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%2f55310687%2fset-parameter-in-formdata-for-dynamic-fields-javascript%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    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

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현