<%= f.association :opportunity_status, :label => "Status", :input_html => {} %>
<%= f.select :source_type, options_for_select(["lead","vteam"],["lead"]) %>
在第一行,每件事都可以。在第二行,如果我按照我在第一行中的方式附加标签,则显示错误。
如何使用simpleform指定select的标签?
答案 0 :(得分:42)
这是因为f.select不是simple_form方法,不支持:label
这应该适用于你的简单形式
<%= f.input :source_type, :label => "Lead or VTeam", :collection => ["lead","vteam"], :selected => "lead" %>
希望这有帮助