go的 iris 連接查詢返回自定義數據結構

https://jasperxu.github.io/gorm-zh/associations.html  GORM 中文文檔 【由於本人用的是gorm來操作的 這個裏面有對mysql操作的文檔】

app.Get("/join/equip_list", func(ctx context.Context) {
        type Result struct {
            DeviceKey string
            Identifier string
            DeviceName string
            ID int
            IValue int
        }
        var results[] Result
        db.GetGormDB().Table("property_values").Select("property_values.id, property_values.device_key, property_values.value as ivalue, property_values.identifier, d.device_name, d.id").Joins("left join devices as d on d.device_key = property_values.device_key").Find(&results)
        d,_:= json.Marshal(results)
        ctx.Write(d)
    })

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章