douyong1850 2016-11-16 07:14
浏览 62
已采纳

golang:解组:json:无法将数组解组为main.MonitorServerInfo类型的Go值

json: cannot unmarshal array into Go value of type

config json:

{
    "monitor_servers_info":[
            {
                "server_info":{
                        "host":"127.0.0.1",
                        "port":28081,
                        "magic":"magic0",
                        "params":"all",
                        "interval":10000
                }
            },
            {
                    "server_info":{
                            "host":"127.0.0.1",
                            "port":28080,
                            "magic":"magic1",
                            "params":"all",
                            "interval":10000
                    }
            }
    ],

    "sentry_server":{
        "host":"127.0.0.1",
        "port":80
    },

    "deadtime":"110000"
}

and my golang code like this:

type ServerInfo struct {
    Host string     `json:"host"`
    Port int64      `json:"port"`
    Magic string    `json:"magic"`
    Params string   `json:"params"`
    Interval int64  `json:"interval"`
}

type ServerInfoStrap struct {
    ConnInfo ServerInfo  `json:"server_info"`
}

type MonitorServerInfo struct {
    Servers []ServerInfoStrap
}

type SentryServer struct {
    Host string     `json:"host"`
    Port int64      `json:"port"`
}

type ConfigServer struct {
    ServerInfo  MonitorServerInfo  `json:"monitor_servers_info"`
    ConnServer  SentryServer       `json:"sentry_server"`
    DeadTime    string             `json:"deadtime"`
}

json parse code :

func readFile(filename string) (config ConfigServer, err error) {
    bytes, err := ioutil.ReadFile(filename)
    if err != nil {
        fmt.Println("ReadFile: ", err.Error())
        return
    }

    //bytes, err = StripComments(bytes) //去掉注释
    //if err != nil {
    //  log.Info("Failed to strip comments from json: %s
", err)
    //  return
    //}

    //xxx := make(map[string]interface{})
    fmt.Println(string(bytes))
    err = json.Unmarshal(bytes, &config)
    if err != nil {
        fmt.Println("Unmarshal: ", err.Error())
        return
    }

    fmt.Println(config)

    return
}
  • 写回答

1条回答 默认 最新

  • doupixian1436 2016-11-16 08:01
    关注

    Your MonitorServerInfo type is the cause of the problem. Get rid of it and it works:

    type ConfigServer struct {
        ServerInfo []ServerInfoStrap `json:"monitor_servers_info"`
        ConnServer SentryServer      `json:"sentry_server"`
        DeadTime   string            `json:"deadtime"`
    }
    

    Playground: https://play.golang.org/p/Prt1j7ePCZ.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分