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
뒤에:
콜론이 있는 이유는 무엇인가요?