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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將新的子文檔附加到主結(jié)構(gòu)中的數(shù)組

將新的子文檔附加到主結(jié)構(gòu)中的數(shù)組

Go
阿波羅的戰(zhàn)車 2023-04-24 16:53:27
我的 MongoDB 數(shù)據(jù)庫中有以下 go 結(jié)構(gòu):type Station struct {    ID          bson.ObjectId `bson:"_id" json:"id"`    Name        string        `bson:"name" json:"name"`    Sensors     []Sensor `bson:"sensors" json:"sensors"`}type Sensor struct {    ID             bson.ObjectId `bson:"_id" json:"id"`    Type string `  bson:"type" json:"type"`    Value float64 `bson:"value" json:"value"`}當(dāng)我在端點(diǎn)發(fā)出 POST 請求時localhost:3000/stations/<IDofTheStation/sensors,它應(yīng)該向指定站添加一個新傳感器。目前我有這段代碼func AddSensorToStation(w http.ResponseWriter, r *http.Request) {    defer r.Body.Close()    params := mux.Vars(r)    station, err := dao.FindById(params["id"])    if err != nil {        respondWithError(w, http.StatusBadRequest, "Invalid Station ID")        return    }    sensor := Sensor{Type: "test"}    station.Sensors = append(station.Sensors, sensor)       if err := dao.Update(station); err != nil {        respondWithError(w, http.StatusInternalServerError, err.Error())        return    }    respondWithJson(w, http.StatusOK, station)}問題是它不會為我要添加的新傳感器自動生成 ID,因此會拋出錯誤“ ObjectIDs 必須恰好 12 個字節(jié)長(得到 0) ”將新的 Sensor 實(shí)例附加到數(shù)據(jù)庫為傳感器生成 id 的 Sensors 數(shù)組的最佳方法是什么?
查看完整描述

1 回答

?
不負(fù)相思意

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超10個贊

MongoDB 永遠(yuǎn)不會ID在服務(wù)器端為子文檔生成一個。

你真的需要ID傳感器嗎?MongoDB 不會抱怨子ID文檔ID沒有ID.

如果您出于某種原因確實(shí)需要 ID,那么您當(dāng)然可以在客戶端創(chuàng)建一個:

sensor.ID := bson.NewObjectId()


查看完整回答
反對 回復(fù) 2023-04-24
  • 1 回答
  • 0 關(guān)注
  • 135 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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