3

在 Rails 应用程序中使用 Squeel,我有一个条件哈希:

{'trans' => 'manual'}

我最终计划移动到一个数组中......所以我也可以有一个操作员分配。

[[field,operator,value][field,operator,value]]

我想使用一个模型方法,现在我省略了运算符,我只是在尝试 == 让它工作......但是,我下面的内容不起作用。

def self.with_conditions(conditions)
    joins{car}.where do
      conditions.map {|key,value| (key==value) }.inject(:&)
    end
end

我也试过这个:

def self.with_conditions(conditions)
  joins{car}.where do
    query = nil

    conditions.each do |key, value|
      q = (key == value)

      if query
        query &= q
      else
        query = q
      end
    end

    query     
  end
end

那么,我如何让它与 == 一起使用,然后我最终如何让它与动态运算符一起使用呢?谢谢

在控制台中,我的 SQL 在我的任何条件下都不会读取...例如:

在控制台中:

> Timeslip.with_conditions({'car.year'=>'1991'})

SELECT "timeslips".* FROM "timeslips" INNER JOIN "cars" ON "cars"."id" = "timeslips"."car_id"
4

2 回答 2

3

您需要以编程方式构建 Squeel 查询。例如:

def self.with_conditions(conditions)
  conditions.map do |col, str|
    Squeel::Nodes::Predicate.new(Squeel::Nodes::Stub.new(col), :matches, str) # (email.matches "user@example.com")
  end.inject do |t, expr|
    t & expr # joins each expression from the .map above with & - to be converted to AND in the sql
  end.tap do |block|
    return where{(block)} # pass the constructed expression to Squeel
  end
end

在我的User::User模型上,我可以运行

User::User.with_conditions({email: "user@example.com", first_name: "Deefour"}).to_sql

我会得到

SELECT "user_users".* FROM "user_users"  WHERE (("user_users"."email" LIKE 'user@example.com' AND "user_users"."first_name" LIKE 'Deefour'))
于 2013-02-01T20:21:14.310 回答
0

我不知道这是否有帮助,但我是使用这个辅助方法这样做的:

  def query_for_matches(key, value)
    stub = Squeel::Nodes::Stub.new(key)
    Squeel::Nodes::Predicate.new(stub, :matches, "%#{value}%")
  end

您有来自某个请求的参数散列:

  dynamic_params = {'username' => 'some_name', 'email' => 'email@example.com'}

where然后我在循环中将它与 's 链一起使用:

  query = SomeModel #could be User, etc
  dynamic_params.each_pair {|key,value| query = query.where(query_for_matches(key, value)) }

然后,您可以传递query到您的视图或其他任何内容。我只在轨道上工作了几个星期,所以我不确定这是否是最佳做法,但它确实有效。

于 2014-01-03T12:12:32.717 回答