嗨,我正在使用gem 'carmen-rails'
在我看来,我已经写了这个
<%= f.country_select :country, prompt: 'Please select a country',
:id=>'curr-country' %>
但它没有采用这个 id 'curr-country'。请指导如何在此提供 id。提前致谢。
嗨,我正在使用gem 'carmen-rails'
在我看来,我已经写了这个
<%= f.country_select :country, prompt: 'Please select a country',
:id=>'curr-country' %>
但它没有采用这个 id 'curr-country'。请指导如何在此提供 id。提前致谢。
<%= f.country_select :country, {id: 'curr-country', prompt: 'Please select a country'} %>
尝试这个
尝试这个
<%= f.country_select :country, {priority: %w(US CA)}, {prompt: 'Please select a country'}, {:id => 'your-id'} %>
希望这会帮助你。
<%= f.country_select :country, {}, class: "form-control" %>
试试这个:)