我有一個與Rails中發送的形式與遠程真正的4
<%= form_for current_user, url: update_image_user_path(current_user), method: :post, html: {multipart: :true, remote: true}, :authenticity_token => true do |f| %>
更新映像的形式來操作具有
respond_to do |format|
format.js
format.html
end
,但我收到以下錯誤
ActionView::MissingTemplate - Missing template users/update_image, application/update_image with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :coffee]}.
我沒有update_image.html.erb模板,但是從錯誤中我知道請求不是以js格式發送的
我錯過了什麼?
仍然不會包括在格式JS –
我不是當然。但也許錯誤是由ajax限制造成的。 http://stackoverflow.com/questions/4009252/is-it-possible-in-rails3-to-have-a-multipart-form-true-use-remote-true – ironsand