gpt4 book ai didi

mongodb - 使用 gopkg.in/mgo.v2 作为字符串在 golang 中自定义 mongodb 命令

转载 作者:数据小太阳 更新时间:2023-10-29 03:11:48 25 4
gpt4 key购买 nike

我想知道,是否有运行我自己的命令(或查询)的命令(或查询),我在 go 中使用“mgo”将其构造为字符串变量。

像这样:

c := session.DB(DBNAME).C(COLLECTION)
c.RUN_COMMAND_AS_STRING("find({username:'vahid'})")

最佳答案

is there anyway to run my own command (or query) which I have constructed as a string variable using "mgo" in go.

您可以调用 MongoDB find command ,并将查询过滤器的字符串解析为 map[string]interface{}

例如:

db := session.DB("databaseName")

queryString := `{"username":"sergio"}`
var filter map[string]interface{}
err = json.Unmarshal([]byte(queryString), &filter)

result := bson.M{}
err = db.Run(bson.D{{"find", "collectionName"}, {"filter", filter}}, &result)
fmt.Println(result)

或者,根据您的用例,您也可以使用 MongoDB Aggregation Pipeline 而不是使用 find() .

例如:

pipeString := `[{"$match":{"username":"sergio"}}, {"$project":{"newfield":"$username"}}]`

pipe := []bson.M{}
err = json.Unmarshal([]byte(pipeString), &pipe)

coll := session.DB("databaseName").C("collectionName")
response := []bson.M{}
err = coll.Pipe(pipe).All(&response)
fmt.Println(response)

关于mongodb - 使用 gopkg.in/mgo.v2 作为字符串在 golang 中自定义 mongodb 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49670459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com