I'm having an issue with one of my controller's AJAX functionality. Here's what I have:
class PhotosController < ApplicationController
# ...
def create
@photo = Photo.new(params[:photo])
@photo.image_content_type = MIME::Types.type_for(@photo.image_file_name).to_s
@photo.image_width = Paperclip::Geometry.from_file(params[:photo][:image]).width.to_i
@photo.image_height = Paperclip::Geometry.from_file(params[:photo][:image]).height.to_i
@photo.save!
respond_to do |format|
format.js
end
end
# ...
end
This is called through a POST request sent by this code:
$(function() {
// add photos link
$('a.add-photos-link').colorbox({
overlayClose: false,
onComplete: function() { wire_add_photo_modal(); }
});
function wire_add_photo_modal() {
<% session_key = ActionController::Base.session_options[:key] %>
$('#upload_photo').uploadify({
uploader: '/swf/uploadify.swf',
script: '/photos',
cancelImg: '/images/buttons/cancel.png',
buttonText: 'Upload Photo(s)',
auto: true,
queueID: 'queue',
fileDataName: 'photo[image]',
scriptData: {
'<%= session_key %>': '<%= u cookies[session_key] %>',
commit: 'Adding Photo',
controller: 'photos',
action: 'create',
'_method': 'post',
'photo[gallery_id]': $('#gallery_id').val(),
'photo[user_id]': $('#user_id').val(),
authenticity_token: encodeURIComponent('<%= u form_authenticity_token if protect_against_forgery? %>')
},
multi: true
});
}
});
Finally, I have my response code in app/views/photos/create.js.erb:
alert('photo added!');
My log file shows that the request was successful (the photo was successfully uploaded), and it even says that it rendered the create action, yet I never get the alert. My browser shows NO javascript errors.
Here's the log AFTER a request from the above POST request is submitted:
Processing PhotosController#create (for 127.0.0.1 at 2010-03-16 14:35:33) [POST]
Parameters: {"Filename"=>"tumblr_kx74k06IuI1qzt6cxo1_400.jpg", "photo"=>{"user_id"=>"1", "image"=>#<File:/tmp/RackMultipart20100316-54303-7r2npu-0>}, "commit"=>"Adding Photo", "_edited_session"=>"edited", "folder"=>"/kakagiloon/", "authenticity_token"=>"edited", "action"=>"create", "_method"=>"post", "Upload"=>"Submit Query", "controller"=>"photos"}
[paperclip] Saving attachments.
[paperclip] saving /public/images/assets/kakagiloon/thumbnail/tumblr_kx74k06IuI1qzt6cxo1_400.jpg
[paperclip] saving /public/images/assets/kakagiloon/profile/tumblr_kx74k06IuI1qzt6cxo1_400.jpg
[paperclip] saving /public/images/assets/kakagiloon/original/tumblr_kx74k06IuI1qzt6cxo1_400.jpg
Rendering photos/create
Completed in 248ms (View: 1, DB: 6) | 200 OK [http://edited.local/photos]
NOTE: I edited out all the SQL statements and I put "edited" in place of sensitive info.
What gives? Why aren't I getting my alert();?
Please let me know if you need anymore info to help me solve this issue! Thanks.