gpt4 book ai didi

mongodb - 将新的子文档附加到主结构中的数组

转载 作者:数据小太阳 更新时间:2023-10-29 03:10:24 24 4
gpt4 key购买 nike

我的 MongoDB 数据库中有以下 go 结构:

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"`
}

当我在端点 localhost:3000/stations/<IDofTheStation/sensors 发出 POST 请求时, 它应该向指定的站点添加一个新的传感器。

目前我有这段代码

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 个字节长(得到 0)

将新的传感器实例附加到数据库为传感器生成 ID 的传感器数组的最佳方法是什么?

最佳答案

MongoDB 永远不会在服务器端为子文档生成 ID

您真的需要传感器上的 ID 吗? MongoDB 不会提示子文档没有 ID(或者它的 ID 格式错误),因为子文档可以有任意结构 - 所以它可以无需 ID 即可轻松存在。

如果您出于某种原因确实需要 ID,那么您当然可以在客户端创建一个:

sensor.ID := bson.NewObjectId()

关于mongodb - 将新的子文档附加到主结构中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52933910/

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