3

我希望你能帮助我弄清楚为什么我会收到这个奇怪的错误。

我有以下表格:

index.html.erb

<%= form_for :response, :url => {:action => 'create'}, :remote => true do |f| %> 
  <%= f.hidden_field :template_id, :value => @template.id %>
    <%= button_tag(type: 'submit', class: "btn btn-primary btn-lg pull-right next-slide") do %>
      Next &rarr;
     <% end %>
<% end %>

治疗控制器.erb

 def create
   @response = Response.new(response_params)
    respond_to do |format| 
      if @result = @response.save 
        format.html 
        format.js  
       else  
        format.html { render :action => "new" }  
        format.js
       end  
     end
   end

意见/治疗/create.js.erb

<% if @result %>
  alert("Success!");
<% else %>
  alert("Fail!");
<% end %>

但是,当我提交表单时,我收到以下错误:

模板缺失:

缺少模板治疗/创建,应用程序/创建 {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, : jbuilder, :slim]}。搜索:*...

任何想法为什么我会收到此错误?我不知道是什么原因造成的。

谢谢!

更新:

所以,我已经尝试了 MrYoshiji、Dave 和 Pavan 的建议,但我仍然得到同样的错误。因此,在我的 中therapy_controller.erb,我将其更改为:

respond_to do |format|
  format.js
end

现在,我得到了错误:

ActionController::UnknownFormat in TherapyController#create 

有任何想法吗?

更新 2:这是服务器日志:

 Started POST "/therapy" for 152.79.45.121 at 2014-05-15 18:01:21 +0000
 Processing by TherapyController#create as HTML
  Parameters: {"utf8"=>"✓", "response"=>{"template_id"=>"2"}, "commit"=>"Save Response"}
 Completed 406 Not Acceptable in 1ms

  ActionController::UnknownFormat (ActionController::UnknownFormat):
    app/controllers/therapy_controller.rb:13:in `create'

文件在routes.rb这里: https ://gist.github.com/dodinas/fb0a39282022e961ce09

谢谢。

4

2 回答 2

5

试试这个

def create
  @response = Response.new(response_params)
  respond_to do |format| 
    if @result = @response.save 
      format.html 
      format.js { render 'create.js.erb' }
    else  
      format.html { render :action => "new" }  
      format.js
    end  
  end
end

资源

于 2014-05-09T16:55:00.983 回答
0

错误来自浏览器请求 HTML 数据而控制器只接受 js。我建议在 index.html.erb 中添加:format => :jsto的选项:form_for

<%= form_for :response, :url => {:action => 'create', :format => :js}, :remote => true do |f| %>

资源

于 2014-05-21T11:09:54.203 回答