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


在第一行,一切正常。在第二行上,如果我像在第一行中那样粘贴标签,则会显示错误。

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

最佳答案

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

这应该适合您/简单的表格

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

希望这可以帮助

关于ruby-on-rails-3 - 如何在simpleform rails中指定选择标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5242289/

10-13 01:14