Golang不合适的JSON unmarshal

时间:2014-10-08 20:46:26

标签: json go

为什么此代码显示不正确的输出

http://play.golang.org/p/NBYnJOhmV2

1 个答案:

答案 0 :(得分:0)

如果要将JSON解析为结构,则成员必须是公共的 - 即具有初始资本。

例如

type Base struct {
    Results []struct {
        Mp_id                   string
        First_name              string
        Last_name               string
    }
    Count int
    Page  struct {
        Count    int
        Per_page int
        Page     int
    }
}

Playground