欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Golang Mongodb模糊查询的使用示例

程序员文章站 2022-06-23 20:33:38
前言 在日常使用的mongodb中,有一项功能叫做模糊查询(使用正则匹配),例如: db.article.find({"title": {$regex: /a/...

前言

在日常使用的mongodb中,有一项功能叫做模糊查询(使用正则匹配),例如:

db.article.find({"title": {$regex: /a/, $options: "im"}})

这是我们常用mongodb的命令行使用的方式,但是在mgo中做出类似的方式视乎是行不通的:

query := bson.m{"title": bson.m{"$regex": "/a/", "$options": "im"}}

大家用这个方式去查询,能查询到算我输!

下面总结一下,正真使用的方式:

在mongodb的命令行中,我们可以使用形如 \abcd\ 的方式来作为我们的pattern,但是在mgo是直接传入字符串来进行的,也就是传入的是"\a",而不是\a\。

根据第一点,我们将代码修改一下。

query := bson.m{"title": bson.m{"$regex": "a", "$options": "im"}}

但是我们会发现依然不能得到我们想要的结果,那么第二点就会产生了!

在mgo中要用到模糊查询需要mgo中自带的一个结构: bson.regex

// regex represents a regular expression. the options field may contain
// individual characters defining the way in which the pattern should be
// applied, and must be sorted. valid options as of this writing are 'i' for
// case insensitive matching, 'm' for multi-line matching, 'x' for verbose
// mode, 'l' to make \w, \w, and similar be locale-dependent, 's' for dot-all
// mode (a '.' matches everything), and 'u' to make \w, \w, and similar match
// unicode. the value of the options parameter is not verified before being
// marshaled into the bson format.
type regex struct {
pattern string
options string
}

那么最终我们的代码为:

query := bson.m{"title": bson.m{"$regex": bson. regex:{pattern:"/a/", options: "im"}}}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。