如何列出相关城市后面的唯一国家/地区?以下是我的产品表:
name country city
p1 US New York
p2 US Boston
p3 US Chicago
k1 UK London
k2 UK Liverpool
控制器:
@countries = Product.joins(:user).distinct.where("country is not null and country <> ''").where(:users => {:merchant_status => 1}).pluck(:country)
@cities = Product.joins(:user).distinct.where("city is not null and city <> ''").where(:users => {:merchant_status => 1}).pluck(:city)
@countries.map! {|country| country.split.map(&:capitalize).join(' ')}
@search_location_country = @countries
在我的观点中:
<ul id="color-dropdown-menu" class="dropdown-menu dropdown-menu-right" role="menu">
<% @search_location_country.each do |country| %>
<li class="input"><a href="#"><%= country %></a></li>
<% end %>
</ul>
如何对下拉列表的最终结果进行排序:
US
- New York
- Boston
- Chicago
UK
- London
- Liverpool
谢谢!
修改
要显示如下内容:
答案 0 :(得分:1)
嘿,您可以使用group
尝试这种方式,它会为您提供所有不同的记录
@countries_cities = Product.joins(:user).where("country is not null and country <> ''").where("city is not null and city <> ''").where(:users => {:merchant_status => 1}).group(:country, :city).select("country,city").as_json
它会为您输出
[{:country => "US", :city => "New York"}..]
如果您想再按国家/地区分组,请使用
cchs = @countries_cities.group_by{|cc| cc["country"]}
使用
将上面的多维数组转换为哈希@country_cities_hash = = Hash[*cchs]
在您的视图文件中
<% @country_cities_hash.each do |country, cities| %>
<li class="input"><a href="#"><%= country %></a></li>
<% cities.each do |city| %>
<li class="input"><a href="#"><%= "#{city}(#{country})" %></a></li>
<% end %>
<% end %>
答案 1 :(得分:1)
我不确定我是否理解这个问题,但是...我猜你有一个Product的集合,看起来像这样:
produts = [
<Product @name="p1", @country="US" @city="New York">,
<Product @name="p1", @country="US" @city="Boston">,
<Product @name="k2", @country="FR" @city="Paris">,
...
]
在这种情况下,按国家/地区索引城市名称:
@cities_by_coutry = products.inject({}) do |index, product|
index[product.country] ||= []
index[product.country] << product.city
index
end
结果如下:
{"US"=>["New York", "Boston"], "FR"=>["Paris"]}
然后你可以迭代:
@cities_by_coutry.each do |country, cities|
cities.each do |city|
puts "City: #{city} is in country {country}"
end
end