使用state_select gem

时间:2012-11-22 01:03:16

标签: ruby-on-rails-3.1 gem form-helpers

我正在尝试在表单中使用state_select gem。它给了我下拉,并说 州,但没有选择的选项。

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

1 个答案:

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

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