嗨,我正在使用 carmen gem 进行国家和州列表。
我的视图代码是,
<div class=" control-group">
<%= f.label :country, :class => 'control-label' %>
<div class="controls">
<%= f.select :country, Carmen::Country.all.collect{|c| c.name}, {:selected => country}, :remote=>true %>
</div>
</div>
<div class=" control-group">
<%= f.label :state, :class => 'control-label' %>
<div id="addressStates">
<%= render :partial => 'experienceones/states', :locals => {:states => Carmen::Country.named('India').subregions.collect{|sub| sub.name }, :form => f} %>
</div>
</div>
部分状态是,
<div class="controls">
<%= fields_for 'experienceones' do |addr_form| %>
<% if !@states.blank? %>
<%= addr_form.select :state, @states, {:prompt => 'Select State'}, {:style => 'width: 180px'} %>
<% else %>
<%= addr_form.text_field :state %>
<% end %>
<% end %>
</div>
jQuery是,
jQuery('select#experienceone_country').change(function() {
var country = 'country=' + $('select#experienceone_country :selected').text();
jQuery.ajax({
url: '/experienceones/update_state_select',
data: country,
dataType: 'html',
success: function(data){
jQuery("div#addressStates").html(data);
},
});
});
在控制器中我有,
def update_state_select
@states = Carmen::Country.named(params[:country]).subregions.collect{|sub| sub.name } || []
end
当我选择国家时,我能够在选择标签中成功获取州列表。
但我得到错误,
No route matches [GET] "/experienceones/1/true"
我知道,真的是我要求的结果
GET "/experienceones/update_state_select?country=######"
bt 我怎样才能避免这种情况?
我的编辑网址是
http://localhost:3000/experienceones/1/edit
如果我使用,
window.location.href = "/experienceones/<%= @experience.id %>/edit"
在 ajax 成功中,我得到了新的编辑页面。
我想用选定的国家和州在同一页面(即编辑页面)bt 中重定向。
我怎样才能做到这一点?
同样的问题是新的。
谢谢你。