レコードを編集するモーダル ブートストラップのフォームがあります。Chrome ブラウザでは正常に動作しますが、Firefox では動作しません。何が起こるかというと、送信は Firefox では機能しません。問題について何か考えはありますか?コードの下の部分を見てください。
レイアウト/application.html.erb
(...)
<div class="content">
<%= yield %>
</div>
(...)
写真/index.erb
<h1>Painting Gallery</h1>
<div id="photos">
<%= render @photos %>
</div>
<div class="clear"></div>
<% if can? :create, @horse.photos.build %>
<%= form_for([@farm,@horse, @photo], :html => {:multipart => true} ) do |f| %>
<%= f.label :image, "Upload paintings:" %>
<%= f.file_field :image, multiple: true, name: "photo[image]" %>
<%= f.submit %>
<% end %>
<% end %>
_photo.erb
<%= link_to t("photo.edit"), edit_farm_horse_photo_path(@farm.slug,@horse.slug,photo.id), :remote => true, :data => {:toggle => "modal", :target => "#editPhoto"} %>
_form.erb
<div id="editPhoto" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="editPhotoLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="editPhotoLabel">Editar foto</h3>
</div>
<div class="modal-body">
<%= form_for([@farm,@horse, @photo], :html => { :id => "frmPhoto"},:remote => true) do |f| %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<p>
<%= f.file_field :image %>
</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<%= f.submit "Salvar" , :id => "btnEnviar" ,:class => "btn btn-primary" %>
</div>
<% end %>
</div>
edit.js.erb
$(".content").append('<%= escape_javascript(render("photos/form")) %>');
$("#editPhoto").modal("show");
photos_controller.rb
def edit
@photo = Photo.find(params[:id])
end
def update
respond_to do |format|
@photo = @horse.photos.find(params[:id])
if @photo.update_attributes(params[:photo])
format.js
else
render :edit
end
end
end
編集リンクをクリックするとモーダルが表示されますが、送信ボタンをクリックしても何も起こりません。編集リンクをクリックしたときのブラウザの応答を見てください。
$(".content").append('<div id=\"editPhoto\" class=\"modal hide fade\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"editPhotoLabel\" aria-hidden=\"true\">\n <div class=\"modal-header\">\n <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-hidden=\"true\">×<\/button>\n <h3 id=\"editPhotoLabel\">Editar foto<\/h3>\n <\/div>\n <div class=\"modal-body\">\n <form accept-charset=\"UTF-8\" action=\"/criatorio-sagitario/horses/teste--2/photos/9\" class=\"edit_photo\" data-remote=\"true\" enctype=\"multipart/form-data\" id=\"frmPhoto\" method=\"post\"><div style=\"margin:0;padding:0;display:inline\"><input name=\"utf8\" type=\"hidden\" value=\"✓\" /><input name=\"_method\" type=\"hidden\" value=\"put\" /><input name=\"authenticity_token\" type=\"hidden\" value=\"jNz2kSH0KXGchNKglmN66Vdd/gyMxyyc9jTT5bf50/w=\" /><\/div>\n <div class=\"field\">\n <label for=\"photo_name\">Name<\/label><br />\n <input id=\"photo_name\" name=\"photo[name]\" size=\"30\" type=\"text\" value=\"Original\" />\n <\/div>\n <p>\n <input id=\"photo_image\" name=\"photo[image]\" type=\"file\" />\n <\/p>\n <\/div>\n <div class=\"modal-footer\">\n <button class=\"btn\" data-dismiss=\"modal\" aria-hidden=\"true\">Close<\/button>\n <input class=\"btn btn-primary\" id=\"btnEnviar\" name=\"commit\" type=\"submit\" value=\"Salvar\" />\n <\/div>\n<\/form><\/div>\n\n\n');
$("#editPhoto").modal("show");