第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

需要光標(biāo)選項(xiàng)

需要光標(biāo)選項(xiàng)

Go
狐的傳說(shuō) 2022-06-21 09:49:04
我在我的項(xiàng)目中使用 Go 和 MongoDB。我用過(guò)db.collection.aggregate([{$match:{}},{$lookup:{}},{$addFields:{}}])它在 MongoDB 中運(yùn)行良好,但是當(dāng)我在 Go 中使用管道時(shí),出現(xiàn)以下錯(cuò)誤The 'cursor' option is required, except for aggregate with the explain argument去代碼是matchStage:=bson.M{"$match":bson.M{}}pipeline := collection.Pipe([]bson.M{matchStage})    err = pipeline.All(&resp)
查看完整描述

1 回答

?
滄海一幻覺

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個(gè)贊

這不是你應(yīng)該在 Go 中實(shí)現(xiàn) Mongo-Aggregation 查詢的方式。


它應(yīng)該是格式


cursor, err := collection.Aggregate(

        ctx,

        mongo.Pipeline{<PIPELINE-STAGES>},

        options.Aggregate().SetAllowDiskUse(true),

        )

因此,您的代碼應(yīng)該是:


ctx, _ = context.WithTimeout(context.Background(), 2*time.Second)


matchStage := bson.D{

        {"$match", bson.D{}},

    }

lookupStage := bson.D{

        {"from", ""},

        {"let": bson.D{{}}},

        {"pipeline": bson.A{}},

        {"as": ""},

    }

addFieldsStage := bson.D{

        {"$addFields", bson.D{}},

    }


cursor, err := collection.Aggregate(

    ctx,

    mongo.Pipeline{matchStage, lookupStage, addFieldsStage},

    options.Aggregate().SetAllowDiskUse(true),  // Mongo-Aggregate options if any

    )

if err != nil {

    panic(err)

}


for cursor.Next(ctx) {

    var cursorResult bson.M

    err := cursor.Decode(&cursorResult)  // I world recommend to decode it using a struct instead

    if err != nil {

        panic(err)

    }


    fmt.Printf("Decoded Cursor: %v", cursorResult)

}


err = cursor.Close(ctx)

if err != nil {

  panic(err)

}


注意:我沒有在本地測(cè)試過(guò)代碼。因此,如果出現(xiàn)錯(cuò)誤,請(qǐng)告訴我。


查看完整回答
反對(duì) 回復(fù) 2022-06-21
  • 1 回答
  • 0 關(guān)注
  • 112 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)