web-dev-qa-db-fra.com

panique: json: impossible de démêler le tableau dans la valeur Go de type main.Structure

Qu'est-ce que vous essayez d'accomplir?

J'essaie d'analyser les données d'une API json.

Collez la partie du code qui montre le problème.

package main

import (
        "encoding/json"
        "fmt"
        "io/ioutil"
        "net/http"
)

type Structure struct {
        stuff []interface{}
}

func main() {
        url := "https://api.coinmarketcap.com/v1/ticker/?start=0&limit=100"
        response, err := http.Get(url)
        if err != nil {
                panic(err)
        }   
        body, err := ioutil.ReadAll(response.Body)
        if err != nil {
                panic(err)
        }   
        decoded := &Structure{}
        fmt.Println(url)
        err = json.Unmarshal(body, decoded)
        if err != nil {
                panic(err)
        }   
        fmt.Println(decoded)
}

Quel résultat attendez-vous?

Je m'attendais à ce que le code renvoie une liste d'objets d'interface.

Quel est le résultat réel que vous obtenez?

J'ai une erreur: panic: json: cannot unmarshal array into Go value of type main.Structure

4
PLZHELP

L'application démasque un tableau JSON dans une structure. Démarshal à une tranche:

 var decoded []interface{}
 err = json.Unmarshal(body, &decoded)

Envisagez de dissocier une chaîne [] map [string] ou un [] Tick où Tick est

 type Tick struct {
     ID string
     Name string
     Symbol string
     Rank string
     ... and so on
}
10
Cerise Limón

j'ai eu le même problème. utilisez ce code:

type coinsData struct {
    Symbol string `json:"symbol"`
    Price  string `json:"price_usd"`
}

func main() {
resp, err := http.Get("https://api.coinmarketcap.com/v1/ticker/?limit=0")
    if err != nil {
        log.Fatal(err)
    }
    defer resp.Body.Close()

    body, err := ioutil.ReadAll(resp.Body)

    if err != nil {
        log.Fatal(err)
    }

    var c []coinsData
    err = json.Unmarshal(body, &c)
    if err != nil {
        log.Fatal(err)
    }

    fmt.Printf("%v\n", c)
    }

Vous obtiendrez le résultat: [{BTC 7986.77} {ETH 455.857} {XRP 0.580848} ...]

3
olekus