去编程语言:json marshalling

时间:2014-09-18 18:10:08

标签: go

我期待{" a":#34; 42"" b":" 78"}来自以下代码,但它没有做到。

package main

import (
 "encoding/json"
 "fmt"
)

type S struct {
 A int  `json:"a,string"`
 B *int `json:"b,string"`
}

func main() {
 var s S
 json.Unmarshal([]byte(`{"a":"42","b":"78"}`), &s)
 m, _ := json.Marshal(s)
 fmt.Println(string(m))
}

我做错了吗?

1 个答案:

答案 0 :(得分:3)

这是go语言1.3的已知问题。

请参阅https://code.google.com/p/go/issues/detail?id=8587