Coder Social home page Coder Social logo

Comments (9)

rikschennink avatar rikschennink commented on May 14, 2024 1

Hi @lekoala! If you change the name of the input to filepond[] FilePond will copy that name to the hidden input fields.

from filepond.

lekoala avatar lekoala commented on May 14, 2024 1

I just tried on jsfiddle, it works indeed as you said so there must be something wrong in my setup. I'll have a look tomorrow to see what's wrong.

from filepond.

lekoala avatar lekoala commented on May 14, 2024 1

it means i was doing something like

<input class="filepond" type="file" name="Files[]" multiple="multiple" id="InputFiles">

and then doing this

$('.filepond').filepond({allowMultiple: true, name: 'Files'})

When done like that, it's Files that will be used for hidden fields, not Files[]. I was using the "name" option to make sure that it was sent properly to the server.

With Files as key, you get a regular array (['name' => 'some name', ...] and with Files[] you get a more complex array (['name'] => [ 0 => 'some name']).

from filepond.

lekoala avatar lekoala commented on May 14, 2024

it might be more convenient to let the javascript add the [] when needed, so that the declaration would stay the same as a standard html 5 file input ?

As far as I can tell, setting the multiple attribute should not require array syntax.

But otherwise I'll try to change the name and see if it works :-)

from filepond.

lekoala avatar lekoala commented on May 14, 2024

As far as I can tell, it's not working

Here is my input

<input class="filepond" type="file" name="Files[]" multiple="multiple" id="InputFiles">

Here is a sample hidden field

<input type="hidden" name="Files" value="68">

from filepond.

rikschennink avatar rikschennink commented on May 14, 2024

That's odd, can you set up a public test case, I can't reproduce this problem on my test environment.

While I like the idea, I'm afraid automatically switching names might be confusing.

It's indeed more logical to have a singular name for the input ( when it's not enhanced ). But having a fixed name will be easier to handle on the server.

from filepond.

rikschennink avatar rikschennink commented on May 14, 2024

Alright, will await your response.

from filepond.

lekoala avatar lekoala commented on May 14, 2024

ok, it was because I was using the name option to set the name of the field when uploading the file. It's still a bit annoying though because it means that the behaviour is not the same when having single or multiple uploads : the endpoint will get passed an array of files or a single file. But at least its working now :-)

Maybe the docs deserved to be updated so that it's clearly specified that when using multiple attribute, the name should include [] in it?

from filepond.

rikschennink avatar rikschennink commented on May 14, 2024

I'm not sure I understand what you mean with:

I was using the name option to set the name of the field when uploading the file

But I'm glad it's working.

The docs are on GitHub as well, so if you have suggestions for improvement, pull requests are very welcome.

from filepond.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.