具有混合模型的Strong_parameters

时间:2013-04-26 22:29:35

标签: ruby-on-rails strong-parameters

我正在使用强参数,当我尝试保存以下表单时,我收到以下消息。

未定义方法`household_params'代表#'<'VisitsController:0x007fa88deec428'>'

我很困惑,因为我使用的是访问控制器而不是家庭控制器 - 访问与家庭相关联,如下所示,我使用以下代码调用视图:

= link_to 'New Visit', {controller: 'visits', action: 'new', 
household_id: household.id, method: 'post'}, class: 'btn btn-primary'

表格是:

%h3 Household: #{household.name}
%h4 Household Members: #{household.neighbors.count}
%h4 Visits: #{household.visits.count}
= simple_form_for visit do |f|
  = f.input  :visited_on,     :label => 'Visited On', as: :date_picker, input_html: { class: 'span2' }
  = f.input  :starch,         :label => false,  collection: ['Beans','Rice','Potatoes'],selected: 'Beans'
  = f.input  :cereal,         :label => false,  collection: ['Cereal','Grits','Oatmeal']
  = f.input  :option1,        :label => false,  collection: ['Peanut Butter Jelly', 'Deserts','Baby Fromula'], prompt: 'Options'
  = f.input  :items_received, :label => 'Special Needs',input_html: {rows: 4, class: 'span9' }
  = f.input  :notes,          :label => 'Notes',input_html: {rows: 4, class: 'span9' }
  = f.button :submit, :class => 'btn-primary', :label=> 'Save' 

表单工作正常,没有显示家庭信息的三行

我认为strong_parameters感到困惑

0 个答案:

没有答案