次のような浮動小数点数でJSON文字列をデコードする必要があります。
{"name":"Galaxy Nexus", "price":"3460.00"}
以下のGolangコードを使用します。
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)
}
}
実行すると、次の結果が得られます。
json: cannot unmarshal string into Go value of type float64
{Name:Galaxy Nexus Price:0}
型変換でJSON文字列をデコードする方法を知りたいです。