在select_tag中,使用options_from_collection_for_select,如何在轨道上的ruby中选择框元素中设置所选元素
select_tag "server", options_from_collection_for_select(@server, "id", "name")
like selected =“selected”为选项设置
答案 0 :(得分:5)
在select_tag
中,当您使用options_from_collection_for_select
时,使用{strong>值的第四个参数<{>}(您的示例中为id)
options_from_collection_for_select
在上面的例子中,2是被选中的id,你可以在select_tag中选择你想要选择哪个选项的id
有关更多信息,请参阅以下链接
http://apidock.com/rails/ActionView/Helpers/FormOptionsHelper/options_from_collection_for_select
干杯!