我正在尝试使用 Golang 查询 MongoDB 数据库c.Pipe,但响应始终为空,尽管我有诸如("name": "test case ( parenthesis )")数据库之类的项目。
pipe := c.Pipe([]bson.M{{"$match": bson.M{"name":"("}}})
resp := []bson.M{}
err := pipe.All(&resp)
if err != nil {
//handle error
}
fmt.Println(resp) // Empty resp
浮云间
相关分类