1

How do I get the response data from the last chunk uploaded? I cant find it anywhere, the only thing that I found was that you can only access the message on error

Thanks

getl0st
  • 342
  • 1
  • 10

1 Answers1

1

Found it! If you want to retrive the data from the file uploading you need this:

    r.on('fileSuccess', function(file, event) {
        console.log(event);
    });
getl0st
  • 342
  • 1
  • 10