Skip to content

Instantly share code, notes, and snippets.

@ishanray
Last active March 24, 2018 04:40
Show Gist options
  • Save ishanray/a70f41d327d3320afd4699405e8d0c18 to your computer and use it in GitHub Desktop.
Save ishanray/a70f41d327d3320afd4699405e8d0c18 to your computer and use it in GitHub Desktop.
file upload ajax
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
)
$(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