我正在尝试在表单中使用state_select gem。它给了我下拉,并说 州,但没有选择的选项。
<div class="field">
<%= f.label :state %><br />
<%= f.state_select :state, 'US', { :prompt => "State" }, { :style => "width: 75px;" } %>
</div>
答案 0 :(得分:1)
尝试使用此格式
state_select(object, method, country = "US", options = {}, html_options = {})
您尝试此操作并使用your-object-name
并传递options
<%= state_select(your-object-name, :state, country => 'US', options => {}, { :style => "width: 75px;" }) %>