我有 2 个相关的导轨模型
class Location < ActiveRecord::Base
has_many :rates
geocoded_by ....
end
class Rate < ActiveRecord::Base
belongs_to :location
end
我正在使用地理编码器 gem - http://www.rubygeocoder.com
我想找到与pair
用户在一定距离内具有特定属性的所有费率。
在 SQL 中,我会对费率进行内部联接
SELECT * FROM rates INNER JOIN locations ON rates.location_id=locations.id;
然后,插入一个 where 条件来过滤 pair 属性,然后在结果表上使用 Geocoder 的 near 方法(near 方法通过将 where 条件插入到使用位置上的纬度和经度属性计算距离的查询中来工作)到只选择正确距离内的行
我怎样才能在rails中做到这一点?我试过了
rates = Rate.joins(:locations)
我明白了
ActiveRecord::ConfigurationError: Association named 'locations' was not found; perhaps you misspelled it?
我想做这个
rates = Rate.joins(:locations).near(my_latitude, my_longitude, distance).where(:rates => {:pair => 'xxxx'})
但我明白了
undefined method `near' for #<ActiveRecord::Relation:0xa075ff8>