我是 rails_admin gem 的新手。我想让:style
rails_admin 中的字段像选项的下拉列表一样,而不是像普通的输入字段。这是我的迁移:
class CreatePhones < ActiveRecord::Migration
def change
create_table :phones do |t|
t.string :audio
t.string :video
t.string :style
t.timestamps
end
end
end
这是我的 Phone.rb 模型:
class Phone < ActiveRecord::Base
def style_enum
["Free", "Basic", "Advanced", "Super Platinum"]
end
end
我在文档和本手册中的 railsadmin 中阅读了有关枚举和下拉列表的信息,但似乎没有任何效果。
我收到此错误:
感谢您的关注 :)