Rails 4 - 缺少模板

时间:2014-05-09 16:18:00

标签: ruby-on-rails ajax missing-template

我希望你能帮助我弄清楚为什么我会遇到这个特殊的错误。

我有以下表格:

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 %>

therapy_controller.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 =&gt; [:en],:formats =&gt; [:html],:handlers =&gt; [:erb,:builder,:raw,   :ruby,:coffee,:jbuilder,:slim]}。搜索:* ...

为什么我会收到此错误的任何想法?我无法弄清楚导致它的原因。

谢谢!

更新:

所以,我已经尝试过Yoshiji先生,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

感谢。

2 个答案:

答案 0 :(得分: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

<强> Source

答案 1 :(得分:0)

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

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

Source