RT https://godoc.org/upper.io/db/mongo 提供了个find函数,然而我想进行模糊匹配。func (self *Collection) Find(terms ...interface{}) db.Result试图通过下列方法传参
https://godoc.org/upper.io/db/mongo
func (self *Collection) Find(terms ...interface{}) db.Result
temp := map[string]string{ "$regex:": ".*", } count, _ := col.Find(db.Cond{"url": temp}).Count()
然而并不能进行正则匹配
あなたの $regex 后面还有个 : コロンはなぜですか?
$regex
:
あなたの
$regex
后面还有个:
コロンはなぜですか?