搜索逻辑和虚拟属性
假设我有以下模型:
Person <AR
def name
[self.first_name,self.middle_name,self.last_name].select{|n| n.present?}.join(' ')
end
end
我如何使用 searchlogic 对虚拟属性进行搜索,例如:
Person.search.name_like 'foo'
当然,我可以构造一个大语句,例如:
Person.search.first_name_like_or_last_name_like_or_... 'argh'
但肯定有一种更优雅的方法。
Let's say I have the following model:
Person <AR
def name
[self.first_name,self.middle_name,self.last_name].select{|n| n.present?}.join(' ')
end
end
How could I do a search on the virtual attribute with searchlogic, something like:
Person.search.name_like 'foo'
Of courese I could construct a large statement like:
Person.search.first_name_like_or_last_name_like_or_... 'argh'
but surely there is a more elegant way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Searchlogic 可以与现有的命名范围结合,并且必须在虚拟属性的情况下。其中之一是:
Searchlogic can be combined with existing named scopes and must be in case of virtual attributes. One such would be: