RT https://godoc.org/upper.io/db/mongo
提供了個find函數,然而我想進行模糊配對。 func (self *Collection) Find(terms ...interface{}) db.Result
試圖透過下列方法傳參
temp := map[string]string{
"$regex:": ".*",
}
count, _ := col.Find(db.Cond{"url": temp}).Count()
然而並不能進行正規配對