我期待 {"a":"42","b":"78"} 来自以下代码,但它没有这样做。package mainimport ( "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 回答
- 1 回答
- 0 关注
- 179 浏览
添加回答
举报
0/150
提交
取消