How can I pass object specific params on uploadSuccess with FineUploader?

121 Views Asked by At

To piggyback on my previous question here:

How do I block uploads that lack "DateTimeOriginal" exif data with Fine Uploader?

Once I've got the exif data, I'd like to pass it on to my server within the uploadSuccess AJAX call.

I'm aware of being able to add params, but what I don't see in the docs is some way to do something like:

uploadSuccess: {
   params: function(id) {
      var params = {
         DateTimeOriginal: timestamps[id]
      }
      return params;
   }
}

Is there an equivalent way to handle this?

1

There are 1 best solutions below

0
On BEST ANSWER

Upon deeper documentation digging, I found this method:

this.setUploadSuccessParams

Which does the trick.

http://docs.fineuploader.com/api/methods-s3.html#setUploadSuccessParams