<%= 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”%>
希望这可以帮助
原文链接:https://www.f2er.com/ruby/273758.html