gpt4 book ai didi

mongodb - mgo 有序排序聚合

转载 作者:IT王子 更新时间:2023-10-29 01:48:01 25 4
gpt4 key购买 nike

我有以下代码:

competitionMatch := bson.M{ "$match": bson.M{"competition" : bson.M{"$in" : []string{"PREMIERSHIP", "CHAMPIONSHIP", "LEAGUE1", "LEAGUE2"}}}}

group := bson.M{"$group" : bson.M{"_id" : "$homeTeam", "competitionOrder": bson.M{"$max": "$competitionOrder"}, "competition": bson.M{"$max" : "$competition"}}}
//sort := bson.M{"$sort" : bson.M{"competitionOrder": 1,"_id": 1}}
sort := bson.M{"$sort" : bson.D{{"competitionOrder", 1}, {"_id",1}}}
project := bson.M{"$project" : bson.M{"_id":1, "competitionOrder":1, "competition": 1}}

pipe := sessionCopy.DB("footballrecord").C(season).Pipe([]bson.M{competitionMatch, group, sort, project})

我正在尝试进行排序。注释的 sort 有效,但因为它是 bson.M 它是无序的,有时查询没有返回我期望的结果。

我正在尝试使用 bson.D(未注释的行),但在运行查询时出现以下错误:$sort key 规范必须是一个对象

知道我哪里出错了吗?

最佳答案

我发现这是 godep 的问题。导入语句没有被重写。

关于mongodb - mgo 有序排序聚合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34685745/

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