Skip to content
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.

change for multiple file handling #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

zijua
Copy link

@zijua zijua commented Feb 20, 2015

if (tests.formdata) formData.append('file', files[i]);
to
if (tests.formdata) formData.append('file' + i, files[i]);
before the file to be uploaded was only one

if (tests.formdata) formData.append('file', files[i]);
to
if (tests.formdata) formData.append('file' + i, files[i]);
before the file to be uploaded was only one
@zijua
Copy link
Author

zijua commented Feb 20, 2015

or to use only the 'file' reference you can substitute with 'file[]'

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant