我有这个查询
= f.select(:city, Country.where(:country_code => "es").collect(&:cities) {|p| [ p.city, p.id ] }, {:include_blank => 'Choose your city'})
问题是我收到以下错误
SyntaxError: (irb):26: both block arg and actual block given
从我看到的我做错了,包括collect(&:cities)
然后声明阻止。有没有办法可以用同样的查询来完成两个?
答案 0 :(得分:7)
Country.where(:country_code => "es").collect(&:cities)
与
完全相同Country.where(:country_code => "es").collect {|country| country.cities}
这就是您收到错误的原因:您将两个块传递给collect
方法。你的实际意思可能是这样的:
Country.where(:country_code => "es").collect(&:cities).flatten.collect {|p| [ p.city, p.id ] }
这将检索国家/地区,获取每个国家/地区的城市列表,将数组展平为只有一维的数组,然后返回数组中的数组。
由于每个国家/地区代码可能只有一个国家/地区,因此您也可以这样写:
Country.where(:country_code => "es").first.cities.collect {|p| [ p.city, p.id ] }