在 Mongoose 的 find() 中使用 LIKE 模糊查询

发布于 2022-09-10 15:22:22 字数 1810 浏览 233 评论 0

SQL LIKE 运算符 允许您搜索带有通配符的字符串。 MongoDB 没有类似的运算符 - $text 运算符 执行更复杂的文本搜索。 但 MongoDB 确实支持与 LIKE 类似的正则表达式查询。

假设您要查找所有用户 email 包含 gmail,您可以简单地通过 JavaScript 正则表达式搜索 /gmail/

const User = mongoose.model('User', mongoose.Schema({
  email: String
}));

await User.create([
  { email: 'sergei@google.com' },
  { email: 'bill@microsoft.com' },
  { email: 'test@gmail.com' },
  { email: 'gmail@google.com' }
]);

const docs = await User.find({ email: /gmail/ });
docs.length; // 2
docs.map(doc => doc.email).sort(); // ['gmail@google.com', 'test@gmail.com']

等效地,您可以使用 $regex 操作符。

const docs = await User.find({ email: { $regex: 'gmail' } });

请注意,Mongoose 不会 您转义正则表达式中的特殊字符。 如果你想使用 $regexp 对于用户输入的数据,您应该首先使用 escape-string-regexp 或类似的库来处理字符串以转义正则表达式特殊字符。

const escapeStringRegexp = require('escape-string-regexp');
const User = mongoose.model('User', mongoose.Schema({
  email: String
}));

await User.create([
  { email: 'sergey@google.com' },
  { email: 'bill@microsoft.com' },
  { email: 'test+foo@gmail.com' }
]);

const $regex = escapeStringRegexp('+foo');
const docs = await User.find({ email: { $regex } });

docs.length; // 1
docs[0].email; // 'test+foo@gmail.com'

// Throws: MongoError: Regular expression is invalid: nothing to repeat
await User.find({ email: { $regex: '+foo' } });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

谎言

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

已经忘了多久

文章 0 评论 0

15867725375

文章 0 评论 0

LonelySnow

文章 0 评论 0

走过海棠暮

文章 0 评论 0

轻许诺言

文章 0 评论 0

信馬由缰

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文