我正在尝试让地理编码器 gem 处理已使用has_many关系过滤的对象
这样
user.rb
has_one :profile
has_many :roles
name:string
profile.rb
belongs_to :user
latitude,latitude:float, address:string, city:string
role.rb
belongs_to :user
name:string
我遇到的问题是我需要过滤角色说 id => 3
所以我们有
@limitrole = User.includes(:profile, :roles).where('roles.id' => 3)
这将返回一个角色有限的对象,现在获取包含地理编码内容的配置文件
@profiles = @limitrole.collect { |user| user.profile }
这将返回仅限于用户角色的地址对象
但这行不通
@findlocations = @profiles.near('city, country', 20) (city and country being arbitrary values)
然而,这将起作用
@findlocations = Profile.near('city, country', 20)
@profiles应该与配置文件(两个对象)相同,只是@profiles已被过滤。
我如何让它工作?
这可能不是 railsy 但这就是我让它工作的方式
首先抓取表单字段
@findaddress = params[:profile][:profileaddress] + ", " + params[:profile][:profilecity]
接下来,我根据用户的角色获取了用户列表
@limituser = User.includes(:profile, :roles).where('roles.id' => 3)
接下来使用地理编码器(railscast #273)插件,我创建了一个位于表单(@findaddress)中指定的位置附近的所有地理编码地址的列表,并获取user_id
@findlocations = Profile.near(@findaddress, 20).pluck(:user_id)
现在,我可以创建一个按表单字段指定的角色和地址过滤的用户列表
@filteruser = @limituser.where(:id => @findlocations)