首頁  >  問答  >  主體

golang - upper.io/db/mongo是否支援正規表示式查詢?

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()

然而並不能進行正規配對

漂亮男人漂亮男人2751 天前634

全部回覆(1)我來回復

  • 漂亮男人

    漂亮男人2017-05-02 09:19:44

    為什麼你的 $regex 后面还有个 : 冒號?

    回覆
    0
  • 取消回覆