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

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

保存剩余的 Json 對(duì)象從 http - 正文在蒙哥DB

保存剩余的 Json 對(duì)象從 http - 正文在蒙哥DB

Go
躍然一笑 2022-09-19 21:19:14
Go方法應(yīng)該將任何JSON對(duì)象保存在蒙哥數(shù)據(jù)庫(kù)中。在代碼中,僅保存 ID,而不保存整個(gè)對(duì)象。如何解決這個(gè)問(wèn)題?import (    "context"    "encoding/json"    "go.mongodb.org/mongo-driver/bson"    "net/http")//insert the value to mongoDB without any parsingfunc InsertObjectToDatabase(response http.ResponseWriter, request *http.Request) {    //call database and collection    currentDatabase := clients.MongoClientForThisMicroservice.Database("APP_MONGO_DB")    currentCollection := currentDatabase.Collection("APP_MONGO_DB")    //convert structured data to bson    bsonBytes, errBsonConvert := bson.Marshal(json.NewDecoder(request.Body))    if errBsonConvert != nil {        ErrorResponse(response, errBsonConvert)        return    }    //write values to database    _, errInsertDatabase := currentCollection.InsertOne(context.TODO(), bsonBytes)    if errInsertDatabase != nil {        ErrorResponse(response, errInsertDatabase)        return    }    return}結(jié)果在蒙哥數(shù)據(jù)庫(kù){"_id": {    "$oid": "611b754fd413ee180f0a3d0a"}
查看完整描述

1 回答

?
白板的微信

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

您需要傳遞 Go 值,而不是版本。bson.Marshal()


例如:


var model Model

if err := json.NewDecoder(response.Body).Decode(model); err != nil {

        // handle m

}

_, _ = currentCollection.InsertOne(context.TODO(), model)


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

添加回答

舉報(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)