duannaxin9975 2015-10-10 05:05
浏览 399
已采纳

如何在Go中将JSON对象数组转换为具有默认值的结构数组?

I'm working on a Go API that can receive POSTs consisting of a JSON array of objects. The structure of the POST will look something like:

[
  {
    "name":"Las Vegas",
    "size":14
  },
  {
    "valid": false,
    "name":"Buffalo",
    "size":63
  }
]  

Let's say I have the following struct:

type Data {
    Valid    bool
    Name     string
    Size     float64
}

I want to create a bunch of Datas with Valid set to true anytime it's not actually specified in the JSON as false. If I were doing a single one I could use How to specify default values when parsing JSON in Go, but for doing an unknown number of them the only thing I've been able to come up with is something like:

var allMap []map[string]interface{}
var structs []Data
for _, item := range allMap {
  var data Data
  var v interface{}
  var ok bool
  if v, ok := item["value"]; ok {
    data.Valid = v
  } else {
    data.Valid = true
  }
  id v, ok := item["name"]; ok {
    data.Name = v
  }
  ...
  structs = append(structs, data)
}
return structs

Right now the struct I'm actually working with has 14 fields, some of them have values I want to assign defaults, others are fine to leave blank, but all of them have to be iterated through using this approach.

Is there a better way?

  • 写回答

2条回答 默认 最新

  • dongyue0263 2015-10-10 05:29
    关注

    You can use the json.RawMessage type to defer unmarshaling some JSON text value. If you use this type, then the JSON text will be stored in this without unmarshaling (so you can unmarshal this fragment later on as you wish).

    So in your case if you try to unmarshal into a slice of such RawMessage, you can use the technique what you linked in your question, that is you can iterate over the slice of raw values (which are the JSON text for each Data), create a Data struct with values you want as defaults for missing values, and unmarshal a slice element into this prepared struct. That's all.

    It looks like this:

    allJson := []json.RawMessage{}
    if err := json.Unmarshal(src, &allJson); err != nil {
        panic(err)
    }
    
    allData := make([]Data, len(allJson))
    for i, v := range allJson {
        // Here create your Data with default values
        allData[i] = Data{Valid: true}
        if err := json.Unmarshal(v, &allData[i]); err != nil {
            panic(err)
        }
    }
    

    Try it on the Go Playground.

    Notes / Variants

    For efficiency (to avoid copying structs), you can also make the allData to be a slice of pointers in the above example, which would look like this:

    allData := make([]*Data, len(allJson))
    for i, v := range allJson {
        // Here create your Data with default values
        allData[i] = &Data{Valid: true}
        if err := json.Unmarshal(v, allData[i]); err != nil {
            panic(err)
        }
    }
    

    If you want to keep using non-pointers, for efficiency you can "prepare" your wished default values in the slice elements itself, which would look like this:

    allData := make([]Data, len(allJson))
    for i, v := range allJson {
        // Here set your default values in the slice elements
        // Only set those which defer from the zero values:
        allData[i].Valid = true
        if err := json.Unmarshal(v, &allData[i]); err != nil {
            panic(err)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 MapReduce实现倒排索引失败
  • ¥15 luckysheet
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码
  • ¥50 随机森林与房贷信用风险模型
  • ¥50 buildozer打包kivy app失败
  • ¥30 在vs2022里运行python代码
  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题