铁轨js格式的纸夹

时间:2015-03-23 14:04:17

标签: jquery ruby-on-rails

在我的rails应用中,我有一个form_for,其中包含文件附件。我正在使用paperclip上传文件。

模型与附件一起保存,但无法以respond_to格式响应。错误消息显示:ActionController::UnknownFormat

以下是我的代码

<%= form_for @student, remote: true, authenticity_token: true do |f| %>

def create
  @student = Studnet.new(student_params)
  if @student.save
    respond_to do |format|
      format.js {render 'edit'}
    end
  else
    respond_to do |format|
      format.js {render 'new'}
    end
  end
end

1 个答案:

答案 0 :(得分:0)

你打电话应该是一个js ..rather而不是html / json.something: -

Started GET "/images/user_8" for 127.0.0.1 at 2015-03-10 07:17:45 -0700
Processing by ImagesController#show as js

你能看到服务器日志中的相似内容吗?