我正在尝试使用关注/模块为默认的 _form.html.erb 使用 collection_select 标记,我需要设置一个包含一些部门名称的哈希。
这是我的 app/models/concerns/SetDepartment.rb
module Set_Department
extend ActiveSupport :: Concern
def department
department {
1=>"Amatitlán",
2=>"Chinautla",
3=>"Chuarrancho"
}
end
end
这是我要调用部门方法的模型:
class Aplicante < ActiveRecord::Base
include SetDepartment
validates :titulo_id, :primer_nombre,
:primer_apellido, :dpi, :direccion_linea_1,:zona, :department_id, :username,
presence: true
validates :dpi,:username, uniqueness: true
has_secure_password
end
现在,我需要将此哈希包含在我的 app/views/applicants/_form.html.erb 上的 collection_select 标记中
#...
<div class="field">
<%= f.label :department_id %><br>
<%= f.collection_select :department_id, Aplicante.department, Aplicante.department %>
</div>
#...
显然,这不起作用,但我想不出其他任何事情。我已经在互联网上进行了搜索,但我只是得到了艰难的解释,而且没有一个涉及模块......甚至可能吗?