2

我正在使用 Rails3 beta、will_paginate gem 和 geokit gem & plugin。

作为 geokit-rails 插件,似乎不支持 Rails3 范围(包括 :origin 符号是问题),我需要使用 .find 语法。

代替范围,我需要以数组格式组合两组标准:

我有一个默认条件:

conditions = ["invoices.cancelled = ? AND invoices.paid = ?", false, false]

我可能需要将以下条件之一添加到默认条件中,具体取决于 UI 选择:

#aged 0
lambda {["created_at IS NULL OR created_at < ?", Date.today + 30.days]}
#aged 30
lambda {["created_at >= ? AND created_at < ?", Date.today + 30.days, Date.today + 60.days]}
#aged > 90
lamdba {["created_at >= ?", Date.today + 90.days]}

生成的查询类似于:

@invoices = Invoice.find(
  :all, 
  :conditions => conditions,
  :origin => ll     #current_user's lat/lng pair
  ).paginate(:per_page => @per_page, :page => params[:page])

问题:

  1. 有没有一种简单的方法来组合这两个条件数组(如果我的措辞正确的话)
  2. 虽然它不会导致问题,但有没有一种 DRYer 方法来创建这些老化的桶?
  3. 有没有办法将 Rails3 范围与 geokit-rails 插件一起使用?

谢谢你的时间。

4

2 回答 2

3

试试这个:

ca =  [["invoices.cancelled = ? AND invoices.paid = ?", false, false]]

ca << ["created_at IS NULL OR created_at < ?", 
                    Date.today + 30.days] if aged == 0

ca << ["created_at >= ? AND created_at < ?", 
                    Date.today + 30.days, Date.today + 60.days] if aged == 30

ca << ["created_at >= ?", Date.today + 90.days] if aged > 30

condition = [ca.map{|c| c[0] }.join(" AND "), *ca.map{|c| c[1..-1] }.flatten]

编辑方法 2

猴子补丁Array类。monkey_patch.rb在目录中创建一个名为的config/initializers文件。

class Array
  def where(*args)
    sql = args[0]     
    unless (sql.is_a?(String) and sql.present?)
      return self
    end    
    self[0] = self[0].present? ? " #{self[0]} AND #{sql}  " : sql 
    self.concat(args[1..-1])    
  end
end

现在你可以这样做:

cond = []
cond.where("id = ?", params[id]) if params[id].present?
cond.where("state IN (?)", states) unless states.empty?
User.all(:conditions => cond)
于 2010-07-15T03:00:00.713 回答
2

我认为更好的方法是使用匿名范围。
在这里查看: http ://railscasts.com/episodes/112-anonymous-scopes

于 2011-02-01T08:44:11.757 回答