Last active
March 24, 2018 04:40
-
-
Save ishanray/a70f41d327d3320afd4699405e8d0c18 to your computer and use it in GitHub Desktop.
file upload ajax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bucket = Aws::S3::Bucket.new(name: 'truck-parts') | |
@signed_upload_url = bucket.presigned_post( | |
key: 'public/${filename}', | |
success_action_status: '201', | |
acl: 'public-read', | |
signature_expiration: 1.minute.from_now | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$('input:file').change(function() { | |
let form = $('form') | |
let url = form.data('url') | |
$.each(this.files, function(index, file) { | |
let formData = new FormData() | |
$.each(form.data('fields'), function(key, value) { | |
formData.append(key, value) | |
}) | |
formData.append('file', file) | |
$.ajax({ | |
method: 'post', | |
url: url, | |
data: formData, | |
cache: false, | |
contentType: false, | |
processData: false | |
}) | |
}) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment