我已为此代码编写了f.select助手
<select>
<option>abc</option>
<option>def</option>
<option selected>ghi</option>
</select>
<%= f.select(:xFields, ['abc', 'def', 'ghi]) %>
如何选择“ghi”选项作为默认选项?
答案 0 :(得分:1)
修改强>
试试这个:
<%= f.select options_for_select(:xFields, ['abc', 'def', 'ghi'], 'ghi') %>
以下内容应该有效
<%= f.select(:xFields, [['ghi'], 'abc', 'def']) %>
答案 1 :(得分:0)
这是有效的
<%= f.select(:xFields, options_for_select( ['abc', 'def', 'ghi'], 'ghi')) %>