filepond-server-php icon indicating copy to clipboard operation
filepond-server-php copied to clipboard

Fixed there are the same enty name bug

Open Yahasana opened this issue 4 years ago • 2 comments

If there are the same entry name with file input's name, upload data in file input will be ignored.

Yahasana avatar Dec 25 '20 13:12 Yahasana

It's unclear what this will fix, please elaborate

rikschennink avatar Dec 28 '20 11:12 rikschennink


<input name="filepond" type="file" />
<input name="filepond" type="text" />

or

FilePond.setOptions({
    server: {
        process: {
            method: "POST",
            ondata: (formData) => {
                formData.append("filepond", "buggy");
                return formData;
            }
    }
})

Yahasana avatar Dec 29 '20 07:12 Yahasana