使用Ransack gem,我想这样做
>> User.search(first_name_i_cont: 'Rya').result.to_sql
=> SELECT "users".* FROM "users" WHERE (UPPER("users"."first_name") LIKE UPPER('%Rya%'))
但这种方法还不行。
所以我试着搞清楚,还有其他方法可以做到 我得到了一些关于如何做的信息
//in model
ransacker :ig_case, formatter: proc { |v| v.mb_chars.upcase.to_s } do |parent|
Arel::Nodes::NamedFunction.new('UPPER',[parent.table[:firstname]])
end
//in config/ranrack.rb
Ransack.configure do |config|
config.add_predicate 'ig_case', # Name your predicate
arel_predicate: 'matches',
formatter: proc { |v| "%#{v.to_s.gsub(/([\\|\%|.])/, '\\\\\\1').mb_chars.upcase}%"},
validator: proc { |v| v.present? },
compounds: true,
type: :string
end
// use way
User.search({ firstname_or_lastname_ig_case: "ABC"}).result.to_sql
=> "SELECT `Users`.* FROM `Users` WHERE ((UPPER(`users`.`firstname`) LIKE '%ABC%' OR (`users`.`lastname`) LIKE '%ABC%'))"
几个小时之后,我发现每次模特使用时我都可以获得大写一个字段。
如果我选择配置方式,我可以取消所有字段,但我不能像这样得到sql ' UPPER("用户""如first_name&#34)'
有什么解决方案吗?我真的非常感谢。
答案 0 :(得分:4)
您需要通过执行以下操作来覆盖适配器中的Arel:
module Arel
module Nodes
%w{
IDoesNotMatch
IMatches
}.each do |name|
const_set name, Class.new(Binary)
end
end
module Predications
def i_matches other
Nodes::IMatches.new self, other
end
def i_does_not_match other
Nodes::IDoesNotMatch.new self, other
end
end
module Visitors
class ToSql < Arel::Visitors::Visitor
def visit_Arel_Nodes_IDoesNotMatch o
"UPPER(#{visit o.left}) NOT LIKE UPPER(#{visit o.right})"
end
def visit_Arel_Nodes_IMatches o
"UPPER(#{visit o.left}) LIKE UPPER(#{visit o.right})"
end
end
class Dot < Arel::Visitors::Visitor
alias :visit_Arel_Nodes_IMatches :binary
alias :visit_Arel_Nodes_IDoesNotMatch :binary
end
class DepthFirst < Visitor
unless method_defined?(:visit_Arel_Nodes_InfixOperation)
alias :visit_Arel_Nodes_InfixOperation :binary
alias :visit_Arel_Nodes_IMatches :binary
alias :visit_Arel_Nodes_IDoesNotMatch :binary
end
end
end
end
除此之外,您还需要提供预测方法。
这是我解决你问题的宝石的分支: https://github.com/Kartstig/ransack
我有一个关闭的PR,因为它可能已经破坏了其他适配器它到目前为止我的应用程序一直在工作:https://github.com/activerecord-hackery/ransack/pull/405
另请注意,如果您有任何索引列,则会忽略它们,因为您使用的是UPPER。