假设我有一个页面创建一个新的联系人,并从一组预定义的颜色询问他们喜欢什么颜色。控制器和视图/模板如下。
控制器
class ContactController < ApplicationController
class Color
attr_accessor :name, :hex
def initialize(attributes = {})
attributes.each do |n, v|
send("#{n}=", v)
end
end
end
def initialize
super
@colors = [
Color.new(:name => "Red", :hex => "#ff0000"),
Color.new(:name => "Green", :hex => "#00ff00"),
Color.new(:name => "Blue", :hex => "#0000ff")
]
end
def new
@contact = {
:contact_info => Contact.new, #first_name, last_name, email, etc.
:selected_colors => Array.new
}
end
end
查看/模板
<%= simple_form_for @contact, :as => "contact" ... do |f| %>
<%= f.simple_fields_for :contact_info do |cf| %>
<%= cf.input :first_name, :label => "First Name:" %>
<%= cf.input :last_name, :label => "Last Name:" %>
<%= cf.input :email, :label => "Email:" %>
<% end %>
<%= f.input :selected_colors, :collection => @colors, :as => :check_boxes, :label => "Which colors do you like?:" %>
<button type="submit">Volunteer!</button>
<% end %>
我正在构建一个哈希用作模型,并在回发表单时为所选颜色提供一个位置(contact[selected_colors]
)。但是,当我运行它时,我收到以下错误:
#
的未定义方法`selected_colors'
但是我不明白为什么会发生这种情况,有人可以对此有所了解吗?
答案 0 :(得分:1)
尝试修改动作“new”,在@contact定义后添加一些行:
def new
@contact = {
:contact_info => Contact.new, #first_name, last_name, email, etc.
:selected_colors => Array.new
}
# changes here
@contact.instance_eval do
def selected_colors
self[:selected_colors]
end
end
end
这一行的作用是为hash @contract添加一个单例方法。希望这有效。