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;
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
add a comment |
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
add a comment |
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
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
javascript vue.js vuex
edited Mar 23 at 7:17
Styx
5,74762738
5,74762738
asked Mar 23 at 4:46
Vick SainVick Sain
6711
6711
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
You are appending multiple files using the same name. Only the last addition will reach your server.
You have at least 2 options:
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.
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.
I did same. But not working.
– Vick Sain
Mar 23 at 14:46
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%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
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 23 at 7:20
StyxStyx
5,74762738
5,74762738
add a comment |
add a comment |
You are appending multiple files using the same name. Only the last addition will reach your server.
You have at least 2 options:
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.
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.
I did same. But not working.
– Vick Sain
Mar 23 at 14:46
add a comment |
You are appending multiple files using the same name. Only the last addition will reach your server.
You have at least 2 options:
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.
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.
I did same. But not working.
– Vick Sain
Mar 23 at 14:46
add a comment |
You are appending multiple files using the same name. Only the last addition will reach your server.
You have at least 2 options:
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.
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.
You are appending multiple files using the same name. Only the last addition will reach your server.
You have at least 2 options:
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.
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.
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
add a comment |
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
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%2f55310687%2fset-parameter-in-formdata-for-dynamic-fields-javascript%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