我正在尝试使用c.Pipe
在Golang中查询MongoDB数据库,但是尽管数据库中有诸如("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