我的指南模型有一个国家属性。我不想使用插件,我只想将国家作为字符串。一切正常,直到我尝试在 activeadmin 中编辑指南,然后我收到错误消息:
ActionView::Template::Error (要使用 :country 输入,请安装 country_select 插件,例如: https ://github.com/jamesds/country-select ):1:insert_tag renderer_for(:edit)
以我的形式我有
<%= f.input :country, as: :string%>
在我的 admin/guidelines.rb 我有
index do
column :title
column :specialty
column :content
column :hospital
column :country
column :user
default_actions
end