去JSON解析

Go JSON parsing

我是 Go 新手。 我一直在尝试使用 their API 从 Flickr 获取照片,但我在解析 JSON 响应时遇到问题。

我一直在用 Go 编写服务器来处理 Web 服务调用。 我的输出看起来像这样:

{
    "photos": {
        "page": 1,
        "pages": 3583,
        "perpage": 100,
        "total": "358260",
        "photo": [
            {
                "id": "18929318980",
                "owner": "125299498@N04",
                "secret": "505225f721",
                "server": "469",
                "farm": 1,
                "title": "❤️ Puppy Dog Eyes❤️ #Cute #baby #havanese #puppy #love #petsofinstagram #akc #aplacetolovedogs #all_little_puppies #americankennelclub #beautiful #bestanimal #puppies #cutestdogever #dog #doglife #doglover #dogoftheday",
                "ispublic": 1,
                "isfriend": 0,
                "isfamily": 0
            },
            {
                "id": "18930020399",
                "owner": "125421155@N06",
                "secret": "449f493ebc",
                "server": "496",
                "farm": 1,
                "title": "Titt tei hvem er du for en liten tass  Osvald og King  #cat#kitten #bordercollie #puppy#dog",
                "ispublic": 1,
                "isfriend": 0,
                "isfamily": 0
            },
            {
                "id": "18929979989",
                "owner": "131975470@N02",
                "secret": "7da344edcb",
                "server": "498",
                "farm": 1,
                "title": "Shame, Shame",
                "ispublic": 1,
                "isfriend": 0,
                "isfamily": 0
            }
             ]
    },
    "stat": "ok"
}

当我尝试运行它显示的代码时:

cannot use jsonData.Photos.Photo[i].Id (type int) as type []byte in argument to w.Write

我的代码如下:

package main

import(
        "os"
        "fmt"
        "log"
        "net/http"
        "io/ioutil"
        "encoding/json"
        "github.com/gorilla/mux"

)
type Result struct {
        Photos struct {
        Page int `json: "page"`
        Pages int `json: "pages"`
        PerPage int `json: "perpage"`
        Total int `json: "total"`
        Photo []struct {
            Id int `json: "id"`
            Owner string `json: "owner"`
            Secret string `json: "secret"`
            Server int `json: "server"`
            Farm int `json: "farm"`
            Title string `json: "title"`
            IsPublic int `json: "ispublic"`
            IsFriend int `json: "isfriend"`
            IsFamily int `json: "isfamily`
            } `json: "photo"`
    } `json: "photos"`
    Stat string `json: "stat"`
}

func main() {

    router := mux.NewRouter().StrictSlash(true);
    router.HandleFunc("/Index", Index)
    log.Fatal(http.ListenAndServe(":8084", router))
}

func Index(w http.ResponseWriter, r *http.Request) {
    w.Header().Set("Content-Type", "application/json");
    url := "https://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=6b54d86b4e09671ef6a2a8c02b7a3537&text=cute+puppies&format=json&nojsoncallback=1"
    res, err := http.Get(url)
     if err != nil{
        fmt.Printf("%s", err)
        os.Exit(1)
     }
    body, err := ioutil.ReadAll(res.Body)
    if err != nil{
        fmt.Printf("%s", err)
        os.Exit(1)
     }

     jsonData := &Result{}
     err = json.Unmarshal([]byte(body), &jsonData)
     for i := 0;i < len(jsonData); i++ {
        w.Write(jsonData.Photos.Photo[i].Id)
     }
}

问题不在于您的模型,它工作正常。当此行发生错误时,您已经完成反序列化(没有错误); w.Write(jsonData.Photos.Photo[i].Id)。当它需要是一个字节数组时,你正在传递一个 int。

这个答案解释了如何进行转换; Convert an integer to a byte array

因此,将您的代码变成某种工作形式;

import "encoding/binary"

buffer := make([]byte, 4)
for i := 0;i < len(jsonData.Photos.Photo); i++ {
        binary.LittleEndian.PutUint32(buffer, jsonData.Photos.Photo[i].Id)
        w.Write(buffer)
     }

请注意,将您的值的二进制表示形式写入具有小端位顺序的无符号 32 位 int。 可能不适合你。我不能说会怎样,所以你必须在那里做出一些决定,比如你想要什么位顺序,如果你需要签名与未签名等。

编辑:为了完成上述工作,我想您还必须进行从 int 到 uint32 的强制转换。更仔细地查看我链接到的答案,您可以这样做 cleaner/simpler imo.

import "strconv"

for _, p := range jsonData.Photos.Photo {
            w.Write([]byte(strconv.Itoa(p.Id)))
         }

第二次编辑:有很多方法可以将 int 转换为二进制。另一个不错的选择是; func Write(w io.Writer, order ByteOrder, data interface{}) error

我相信您可以像这样使用您的代码;

  import "encoding/binary"

  for i := range jsonData.Photo.Photos {
            binary.Write(w, binary.LittleEndian, jsonData.Photos.Photo[i].Id)
         }

http://golang.org/pkg/encoding/binary/#Write

编辑:更新了三个示例以处理不同种类的循环。