17
<%= f.association :opportunity_status, :label => "Status", :input_html => {} %>
<%= f.select :source_type, options_for_select(["lead","vteam"],["lead"]) %>

在第一行,一切都很好。在第二行,如果我按照第一行的方式附加标签,则会显示错误。

如何使用 simpleform 为选择指定标签?

4

1 回答 1

52

这是因为 f.select 不是 simple_form 方法并且不支持 :label

这应该适用于你/简单的形式

<%= f.input :source_type, :label => "Lead or VTeam", :collection => ["lead","vteam"], :selected => "lead" %>

希望这可以帮助

于 2011-03-20T05:17:36.353 回答