J'ai besoin de décoder une chaîne JSON avec le nombre de flottants comme :
{"name":"Galaxy Nexus", "price":"3460.00"}
J'utilise le code Golang ci-dessous :
package main
import (
"encoding/json"
"fmt"
)
type Product struct {
Name string
Price float64
}
func main() {
s := `{"name":"Galaxy Nexus", "price":"3460.00"}`
var pro Product
err := json.Unmarshal([]byte(s), &pro)
if err == nil {
fmt.Printf("%+v\n", pro)
} else {
fmt.Println(err)
fmt.Printf("%+v\n", pro)
}
}
Quand je l'exécute, j'obtiens le résultat :
json: cannot unmarshal string into Go value of type float64
{Name:Galaxy Nexus Price:0}
Je veux savoir comment décoder la chaîne JSON avec le type convert.