如何使用“卡门”宝石?

时间:2011-10-10 13:41:47

标签: ruby-on-rails-3

我已成功安装了宝石“carmen”并将其包含在我的宝石文件中,但是当我在我的视图中编写代码时它会出错,这是我的观点:

<%= form_for(@contact) do |f| %>
    <div class="field">
         <%= f.label :country %><br />
         <%= country_select(:country, "US") %> 
    </div>

  <div>
      <button type="submit" class="btn btn-green big"><img src= "images/add.png" />  Save</button>&nbsp;
                                                    <button type="reset" class="btn btn-gray big">Cancel</button>                                   </div>
<% end %>

我很困惑,我如何填充默认国家/地区像:india

1 个答案:

答案 0 :(得分:2)

您应该查看carmen-rails库。如果你想让IN成为默认值,那么

<%= f.country_select :country_code, {priority: %w(IN)} %>