内容简介:在日常使用的Mongodb中,有一项功能叫做模糊查询(使用正则匹配),例如:这是我们常用Mongodb的命令行使用的方式,但是在mgo中做出类似的方式视乎是行不通的:大家用这个方式去查询,能查询到算我输!
在日常使用的 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"}}}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用Jest查询Elasticsearch
- 使用phoenix查询hbase
- 使用ProxySQL查询缓存进行扩展
- 使用Jest查询Elasticsearch数据
- 如何在django中使用子查询?
- 灵活使用 SQLAlchemy 中的 ORM 查询
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Little Prover
Daniel P. Friedman、Carl Eastlund / The MIT Press / 2015-7-10 / USD 38.00
[FROM www.amazon.com]: The Little Prover introduces inductive proofs as a way to determine facts about computer programs. It is written in an approachable, engaging style of question-and-answer, wi......一起来看看 《The Little Prover》 这本书的介绍吧!