【发布时间】:2019-01-03 04:14:04
【问题描述】:
我发现使用
title = 'lowercase and More'
topic = Topic.find_by(title:title)
在保存为Lowercase and More时将始终返回nil作为主题标题
我尝试过使用
topics = Topic.find_by_sql("select * from topics where lower(title) = '#{title.gsub(/'/,"''").downcase}'")
if topics.length > 0 then
result = topics[0]
end
解决了title: 'lowercase and More',但它带来了其他边缘情况。
有没有一种简单的方法可以使用 rails 控制台在话语中进行不区分大小写的搜索?
【问题讨论】: