繁体   English   中英

将数据从一个 golang slice struct 复制到另一个 slice strcut

[英]copy data from one golang slice struct to another slice strcut

您好,我有 json 数据,我将其解组到machines切片。 现在我正在寻找从machines slice struct 复制/附加每个hostnameservice Struct []hosts。 我尝试了几种方法,但努力迭代service结构中的 []hosts 切片。

只是想知道将值从一个切片结构复制到其他结构内的另一个切片值的最佳方法是什么。

package main

import (
    "encoding/json"
    "fmt"
)

type Machine struct {
    hostname  string
    Ip   string
    Name string
}

type Host struct {
    HostName string `json:"host_name"`
    Vars Var `json:"vars"`
}

type Service struct {
    ServiceName string `json:"service_name"`
    Required    bool   `json:"required"`
    Hosts       []Host `json:"hosts"`
    Vars        Var    `json:"vars"`
}


func main() {
    machineInfo := `[{"dns":"1.1.1.1.eu-south-1.compute.amazonaws.com","ip":"1.1.1.1","name":"Machine-1"},{"dns":"1.1.1.2.eu-south-1.compute.amazonaws.com","ip":"1.1.1.2","name":"Machine-2"}]`

    var machines []Machine
    var mService *Service
    //convert the json to byts slice and then

    json.Unmarshal([]byte(machineInfo), &machines)

    //Data is now add to the structs



    for i, _ := range machines {
        mService.Hosts = append(mService.Hosts, machines[i].hostname)
    }
    fmt.Printf("Machines : %v", mService)
    
    data, _ := json.Marshal(mService)


    fmt.Println(string(data))
}

让我们从头开始:

通过大写导出主机名字段。 JSON 解码器忽略意外字段。 另外,添加一个标签,使字段与文档匹配:

type Machine struct {
    Hostname string `json:"name"`
    Ip       string
    Name     string
}

将 mServices 声明为一个值以避免 nil 指针恐慌:

var mService Service

使用复合文字表达式为切片创建 append 的主机:

    mService.Hosts = append(mService.Hosts, Host{HostName: machines[i].Hostname})

https://go.dev/play/p/nTBVwM3l9Iw

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM