gpt4 book ai didi

json - 去JSON解析

转载 作者:IT王子 更新时间:2023-10-29 02:23:55 29 4
gpt4 key购买 nike

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

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

{
"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 的强制转换。更仔细地查看我链接到的答案,您可以改为执行此操作,这在我看来更清晰/更简单。

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{}) 错误

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

  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

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

关于json - 去JSON解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31030555/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com