将新的子文档追加到主结构中的数组

时间:2018-10-22 16:32:38

标签: mongodb go mgo mux

我的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,因此会引发错误“ ObjectID必须正好为12个字节长(得到0)” < / p>

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

1 个答案:

答案 0 :(得分:1)

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

您真的需要传感器上的ID吗? MongoDB不会抱怨子文档没有ID(或它的ID格式错误),因为子文档可以具有任意结构-因此即使没有{{ 1}}。

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

ID