Ich muss eine JSON-Zeichenfolge mit der Gleitkommazahl wie folgt dekodieren:
{"name":"Galaxy Nexus", "price":"3460.00"}
Ich benutze den folgenden Golang-Code:
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)
}
}
Wenn ich es ausführe, erhalte ich das Ergebnis:
json: cannot unmarshal string into Go value of type float64
{Name:Galaxy Nexus Price:0}
Ich möchte wissen, wie die JSON-Zeichenfolge mit dem Typ convert dekodiert wird.