欢迎来到代码驿站!

Golang

当前位置:首页 > 脚本语言 > Golang

Golang Mongodb模糊查询的使用示例

时间:2021-08-03 08:59:14|栏目:Golang|点击:

前言

在日常使用的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"}}}

总结

上一篇:golang简单tls协议用法完整示例

栏    目:Golang

下一篇:Go语言判断文件或文件夹是否存在的方法

本文标题:Golang Mongodb模糊查询的使用示例

本文地址:http://www.codeinn.net/misctech/163904.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有