Unmarshal只给我第一个嵌套在JSON响应中的数组元素

时间:2016-05-31 03:41:39

标签: arrays json go unmarshalling flickr

我正在尝试使用Flickr API并且我有一个端点,它给我这样的响应

{
  "photos": {
    "page": 1,
    "pages": 500,
    "perpage": 1,
    "total": 500,
    "photo": [
      {
        "id": "12345",
        "owner": "12345@N01",
        "secret": "12ab345xyz",
        "server": "1234",
        "farm": 1,
        "title": "Some Title",
        "ispublic": 1,
        "isfriend": 0,
        "isfamily": 0
      },
     ...
    ]
  },
  "stat": "ok"
}

我有一个看起来像这样的结构

type FlickrResp struct {
    Photos struct {
        Page int            `json:"page"`       //what page the results were retreived from
        Pages int           `json:"pages"`      //total number of pages of results
        Perpage int         `json:"perpage"`    //number of results per page
        Total int           `json:"total"`      //total number of results
        Photo []struct {
            ID string       `json:"id"`         //image ID
            Owner string    `json:"owner"`      //owner ID
            Secret string   `json:"secret"`     //owner secret
            Server string   `json:"server"`     //server ID
            Farm int        `json:"farm"`       //farm ID
            Title string    `json:"title"`      //image title
            Ispublic string `json:"ispublic"`   //is image publicly viewable?
            Isfriend string `json:"isfriend"`   //is image owner my friend?
            Isfamily string `json:"isfamily"`   //is image owner my family?
        }                   `json:"photo"`      //array of objects with details of photos
    }                       `json:"photos"`     //object that holds information about photoset
    Stat string             `json:"stat"`       //status
}

我正试图解散

var fr FlickrResp                                               //create blank struct of type FlickrResp to hold JSON
resp, err := ioutil.ReadAll(flickrCB.Body)                      //read HTTP GET response
if err != nil {

}
json.Unmarshal([]byte(resp), &fr)                               //serialize JSON into template

flickCB.Body来自http.Get

问题在于我只获得了照片数组的第一个元素。我可以看到,当我将响应对象转换为字符串时,我有多个元素。我究竟做错了什么?我几天来一直在反对Unmarshal和更复杂的JSON响应。

1 个答案:

答案 0 :(得分:4)

最初在评论中回答,但为了更多澄清:

json.Unmarshal发生了未被捕捉的错误:

json: cannot unmarshal number into Go value of type string

由于闪烁API之间的类型不匹配导致ispublicisfriendisfamily为整数,但结构期望字符串。一个简单的解决方法就是将它们转换为整数。

这些情况的另一个选择是使用json.Number,它从源json包装一个基本字符串,并提供一些便利方法,以便稍后将其转换为数字(或者只是将其保存为字符串) 。通过说法

Ispublic json.Number `json:"ispublic"`   //is image publicly viewable?
Isfriend json.Number `json:"isfriend"`   //is image owner my friend?
Isfamily json.Number `json:"isfamily"`

它可以正常工作,并且可以通过fr.Ispublic.String()轻松地将结果作为字符串获取。

在这种情况下可能有用的更精细的更改是使用自定义布尔类型。有问题的值似乎反映了布尔值,但整数也没有完全映射到布尔值。可以使用自定义反序列化类型。从stackoverflow上的其他地方借用this example

type ConvertibleBoolean bool

func (bit ConvertibleBoolean) UnmarshalJSON(data []byte) error {
    asString := string(data)
    if asString == "1" || asString == "true" {
        bit = true
    } else if asString == "0" || asString == "false" {
        bit = false
    } else {
        return errors.New(fmt.Sprintf("Boolean unmarshal error: invalid input %s", asString))
    }
    return nil
}

以上内容可让您将Is*值声明为ConvertibleBoolean,并自动映射0&你可能会在从Flickr到布尔的那些领域得到1个值。