2

我有这个表格

<%= 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上的文档示例步骤

4

1 回答 1

1

你应该确保

//= require jquery.remotipart

已添加到您的 application.js 文件中。我遇到了同样的问题,这解决了它。

于 2012-09-21T02:07:46.603 回答