我需要解码一个带有浮点数的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}
我想知道如何解码类型为convert的JSON字符串。
答案 0 :(得分:133)
答案要简单得多。只需添加告诉JSON插件,它是带有,string
的字符串编码的float64(请注意,我只更改了Price
定义):
package main
import (
"encoding/json"
"fmt"
)
type Product struct {
Name string
Price float64 `json:",string"`
}
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)
}
}
答案 1 :(得分:8)
只是告诉您,您可以在Unmarshal
之后执行此操作并使用json.decode
。这是Go Playground
package main
import (
"encoding/json"
"fmt"
"strings"
)
type Product struct {
Name string `json:"name"`
Price float64 `json:"price,string"`
}
func main() {
s := `{"name":"Galaxy Nexus","price":"3460.00"}`
var pro Product
err := json.NewDecoder(strings.NewReader(s)).Decode(&pro)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(pro)
}
答案 2 :(得分:4)
在引号中传递值使其看起来像字符串。将"price":"3460.00"
更改为"price":3460.00
,一切正常。
如果你不能删除引号,你必须自己解析它,使用strconv.ParseFloat
:
package main
import (
"encoding/json"
"fmt"
"strconv"
)
type Product struct {
Name string
Price string
PriceFloat float64
}
func main() {
s := `{"name":"Galaxy Nexus", "price":"3460.00"}`
var pro Product
err := json.Unmarshal([]byte(s), &pro)
if err == nil {
pro.PriceFloat, err = strconv.ParseFloat(pro.Price, 64)
if err != nil { fmt.Println(err) }
fmt.Printf("%+v\n", pro)
} else {
fmt.Println(err)
fmt.Printf("%+v\n", pro)
}
}
答案 3 :(得分:0)
避免将字符串转换为[] byte:export class HomePage {
items: number[] = [0,1,2,3,4,5,6,7,8,9];
newval : any;
appName = 'Ionic App';
constructor(public navController: NavController) { }
slideChanged(event) {
this.newval = event.realIndex;
}
}
。它分配了一个新的内存空间,并将整个内容复制到其中。
b := []byte(s)
界面更好。以下是来自godoc的代码:
strings.NewReader