innostudio / fileuploader

Beautiful and powerful HTML file uploading tool. A jQuery, PHP and Node.js plugin that transforms the standard input into a revolutionary and fancy field on your page.
141 stars 25 forks source link

Can't send custom data with image each time selecting a photo #57

Closed quanghn96 closed 4 years ago

quanghn96 commented 4 years ago

I want to set unique value each time user select new image, but it always get them same value every time.

innostudio commented 4 years ago

@quanghn96 use beforeSend https://innostudio.de/fileuploader/documentation/#options-ajax

beforeSend: function(item) {
    item.upload.data.my_custom_key = 'my_custom_value';
}