dpkpaxhzffixp8426 2018-12-19 07:20
浏览 350
已采纳

如何在Golang中创建词典列表?

I'm newbie with Golang.

I want to create a list of dictionaries with resizable capability (this is not static) with append some dict to the list, finally write it on a file, but I confused.

I want something like that:

[
 {"port": 161, "timeout": 1, "sleep_time": 5, "metrics": [
  {"tag_name": "output_current", "id": 3},
  {"tag_name": "input_voltage", "id": 2}
 ]},
 {"port": 161, "timeout": 1, "sleep_time": 4, "metrics": [
   {"tag_name": "destructor", "id": 10}
 ]}
]

[UPDATE]:

What is the .append() Python equivalent in Go language something like that?

list_ = []
dict_ = {"key": val}
list_.append(dict_)

I found the answer to this section ([UPDATE]) by borrowing this answer:

type Dictionary map[string]interface{}
data := []Dictionary{}
dict1 := Dictionary{"key": 1}
dict2 := Dictionary{"key": 2}
data = append(data, dict1, dict2)
  • 写回答

2条回答 默认 最新

  • douchengchu8374 2018-12-19 07:28
    关注

    If you need the data to be stored in a dictionary, using a combination of slice and map[string]interface{} is enough.

    In this example below, I created a new type called Dictionary, to avoid writing too many map[string]interface{} syntax on composite literals.

    type Dictionary map[string]interface{}
    
    data := []Dictionary{
        {
            "metrics": []Dictionary{
                { "tag_name": "output_current", "id": 3 },
                { "tag_name": "input_voltage", "id": 2 },
            },
            "port":       161,
            "timeout":    1,
            "sleep_time": 5,
        },
        {
            "metrics": []Dictionary{
                { "tag_name": "destructor", "id": 10 },
            },
            "port":       161,
            "timeout":    1,
            "sleep_time": 4,
        },
    }
    

    But I suggest, if your data structure is fixed, then define a struct instead. Below is an another example using same dataset but in struct object:

    type Metric struct {
        TagName string `json:"tag_name"`
        ID      int    `json:"id"`
    }
    
    type Data struct {
        Port      int      `json:"port"`
        Timeout   int      `json:"timeout"`
        SleepTime int      `json:"sleep_time"`
        Metrics   []Metric `json:"metrics"`
    }
    
    data := []Data{
        Data{
            Port:      161,
            Timeout:   1,
            SleepTime: 5,
            Metrics: []Metric{
                Metric{TagName: "output_current", ID: 3},
                Metric{TagName: "input_voltage", ID: 2},
            },
        },
        Data{
            Port:      161,
            Timeout:   1,
            SleepTime: 4,
            Metrics: []Metric{
                Metric{TagName: "destructor", ID: 10},
            },
        },
    }
    

    Update 1

    To be able to write the data in json file, the data need to be converted into json string first. Use json.Marshal() to do the conversion from map data (or struct object data) to json string, in []byte type.

    buf, err := json.Marshal(data)
    if err !=nil {
        panic(err)
    }
    
    err = ioutil.WriteFile("fileame.json", buf, 0644)
    if err !=nil {
        panic(err)
    }
    

    Then use ioutil.WriteFile() to write it into file.


    If you somehow need to print the json string, cast the buf into string type first.

    jsonString := string(buf)
    fmt.Println(jsonString)
    

    Statements above will generate output below:

    [{"port":161,"timeout":1,"sleep_time":5,"metrics":[{"tag_name":"output_current","id":"3"},{"tag_name":"input_voltage","id":"2"}]},{"port":161,"timeout":1,"sleep_time":4,"metrics":[{"tag_name":"destructor","id":"10"}]}]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛