Ecto查询字符串字段包含其他字符串

时间:2016-08-05 22:50:31

标签: elixir sql-like ecto

我正在构建一个简单的搜索功能,我想查找字符串字段中包含字符串的所有记录。

这是我尝试过的。

term = "Moby"
MyApp.Book
|> where([p], String.contains?(p, term))
|> order_by(desc: :inserted_at)

这将返回以下书籍:

  • Moby Dick
  • Sandich Moby Lean
  • 我的Mobyand示例

但我明白了:

`String.contains?(p, term)` is not a valid query expression

2 个答案:

答案 0 :(得分:6)

您必须使用String.replace/3来转义输入中的%(如果是最终用户输入的),然后在查询中使用like

|> where([p], like(p.title, ^"%#{String.replace(term, "%", "\\%")}%"))

示例:

iex(1)> term = "Foo%Bar"
iex(2)> query = MyApp.Post |> where([p], like(p.title, ^"%#{String.replace(term, "%", "\\%")}%")) |> order_by(desc: :inserted_at)
#Ecto.Query<from p in MyApp.Post, where: like(p.title, ^"%Foo\\%Bar%"),
 order_by: [desc: p.inserted_at]>
iex(3)> Ecto.Adapters.SQL.to_sql(:all, MyApp.Repo, query)
{"SELECT p0.\"id\", p0.\"title\", p0.\"user_id\", p0.\"inserted_at\", p0.\"updated_at\" FROM \"posts\" AS p0 WHERE (p0.\"title\" LIKE $1) ORDER BY p0.\"inserted_at\" DESC",
 ["%Foo\\%Bar%"]}

如果您不进行替换,则"a%b"之类的字词将匹配"azb",因为%需要转义,或者匹配任何零个或多个字符的序列。

答案 1 :(得分:0)

以下是您的工作方式:

results = 
  from b in Book,
  where: ilike(t.name, ^"%#{params["term"]}%"),
  order_by: [desc: :inserted_at]