我有这个表格
<%= form_for @post, :html => {:multipart => true , :class => 'form-horizontal' }, :remote => true do |f| %>
<%= f.text_field :title%>
<%= f.file_field :avatar%>
<%= f.submit nil%>
<% end %>
以及create
动作
def create
@post = Post.new(params[:post])
respond_to do |format|
if @post.save
format.js
end
end
end
无论我写create.js.erb
什么都不会运行,浏览器被重定向到白页!
$('body').html("<h1>Done!</h1>");
谁能告诉我这里有什么问题?请注意,我遵循了github上的文档示例步骤