Ich möchte die Zählung innerhalb des letzten Monats nach Namen gruppiert erhalten. Wenn ich versuche, die folgende Abfrage im Golang-Mongo-Client auszuführen. Ich erhalte die Fehlermeldung:
error:
Das Pipeline-Stufenspezifikationsobjekt darf nur ein Feld enthalten.
cond := &bson.D{ bson.E{Key: "$createTime", Value: bson.E{Key: "$gte", Value: time.Now().AddDate(0, -1, 0)}}, } match := bson.D{{Key: "$match", Value: cond}} group := bson.D{{Key: "$group", Value: bson.D{ {Key: "_id", Value: "$name"}, {Key: "count", Value: bson.D{{Key: "$sum", Value: 1}}}, }}} cursor, err := col.Aggregate(ctx, mongo.Pipeline{match, group})
Ich weiß nicht, was ich tun soll?
Ich konnte die gewünschten Ergebnisse erzielen, indem ich die folgenden Anpassungen vornahm:
$createTime
更改为 createTime
,我假设您的字段名称不以 $
Anfangbson.E{Key: "$gte", Value: time.Now().AddDate(0, -1, 0)}
更改为 bson.D{{Key: "$gte", Value: time .Now().AddDate(0, -1, 0)}}
cond := &bson.D{ bson.E{Key: "createTime", Value: bson.D{{Key: "$gte", Value: time.Now().AddDate(0, -1, 0)}}}, } match := bson.D{{Key: "$match", Value: cond}} group := bson.D{{Key: "$group", Value: bson.D{ {Key: "_id", Value: "$name"}, {Key: "count", Value: bson.D{{Key: "$sum", Value: 1}}}, }}} cursor, err := col.Aggregate(context.TODO(), mongo.Pipeline{match, group}) if err != nil { log.Println("Error: ", err) }
Einige Tipps zum Debuggen dieser Art von Problemen:
err
Variablenuri := options.Client().ApplyURI(appSettings.MongoDbUri) if appSettings.LogDatabaseCommands { cmdMonitor := &event.CommandMonitor{ Started: func(_ context.Context, evt *event.CommandStartedEvent) { log.Print(evt.Command) }, } uri.SetMonitor(cmdMonitor) }
Das obige ist der detaillierte Inhalt vonGolang-Mongodb-Aggregationsfehler: Pipeline-Stufenspezifikationsobjekt darf nur ein Feld enthalten. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!