0

我正在尝试在我的表单中使用 state_select gem。它给了我下拉菜单并显示状态,但没有选项可供选择。

<div class="field">
    <%= f.label :state %><br />
    <%= f.state_select :state, 'US', { :prompt => "State" }, { :style => "width: 75px;" } %>
  </div>
4

1 回答 1

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;" }) %>

来源http ://rubydoc.info/gems/state_select/0.1.0/frames

于 2012-11-27T06:29:23.407 回答