如何使用 Formtastic 语法将字符串列表映射到 Rails 上的 Ruby 中的整数属性?
How to map a list of strings to an integer attribute in Ruby on Rails using Formtastic syntax?
在我的 ActiveAdmin 应用程序中,我有一个 Country
模型,它有一个整数属性 schedule
,其值范围有限,从 0
到 4
。
在new
和edit
操作表单中,我想从下拉框中select一个字符串并将其映射到相应的整数值而不是输入整数直接给自己赋值。
我如何使用 Formtastic
gem 语法来做到这一点?
请参阅有关 SelectInput 的文档 here。
我认为它看起来像:
<%= f.input :schedule, :as => :select, :collection => 1..4 %>
在我的 ActiveAdmin 应用程序中,我有一个 Country
模型,它有一个整数属性 schedule
,其值范围有限,从 0
到 4
。
在new
和edit
操作表单中,我想从下拉框中select一个字符串并将其映射到相应的整数值而不是输入整数直接给自己赋值。
我如何使用 Formtastic
gem 语法来做到这一点?
请参阅有关 SelectInput 的文档 here。 我认为它看起来像:
<%= f.input :schedule, :as => :select, :collection => 1..4 %>