3

到目前为止,我一直在使用 form_for 并且正在使用此代码

<%= f.select :name, options_for_select(%w[Mike Nick Jason Tim]) %>

但是 simple_form_for 中的这个等价物是什么?我查看了 simple_form_for 的 github 文档,但他们没有涵盖这个

谢谢

4

1 回答 1

8

该文档涵盖了此主题,请查看Collections部分

<%= f.input :name, :collection => %w[Mike Nick Jason Tim] %>
于 2013-01-21T08:16:37.857 回答