如何使用golang的mgo包进行模糊查询?

huangapple go评论84阅读模式
英文:

how to do a like query using mgo package for golang

问题

我正在尝试使用mgo进行like查询,但没有成功。

我想要的是一个类似于以下的MongoDB查询:

db.organisation.find( { "permalink" : /org.*/ } )

我仍然卡在以下代码上:

sess.DB(db).C(cApp).
	Find(bson.M{"permalink": "org:bms.*"}).
	All(&m)
英文:

I am trying to do a like query using mgo with no luck.

what I want is a mongodb query similar to

db.organisation.find( { "permalink" : /org.*/ } )

I am still stuck at

sess.DB(db).C(cApp).
	Find(bson.M{"permalink": "org:bms.*"}).
	All(&m)

答案1

得分: 11

使用bson.Regex来使用未维护的MGO客户端包指定正则表达式值。

sess
  .DB(db)
  .C(cApp)
  .Find(bson.M{"permalink": bson.RegEx{"org.*", ""}})
  .All(&m)
英文:

Use bson.Regex to specify a regular expression value using the unmaintained MGO client package.

sess
  .DB(db)
  .C(cApp)
  .Find(bson.M{"permalink": bson.RegEx{"org.*", ""}})
  .All(&m)

huangapple
  • 本文由 发表于 2015年2月1日 07:30:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/28257734.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定