type ServerTime struct {
Iso string `json:"iso"`
Epoch string `json:"epoch"`
}
Iso是一个string类型的,ServerTime这个结构体的成员,后面的`json:"iso"` 是什么意思?
可是, []byte(json_string) 不是已经把json_string 转成了byte array了吗?
uint arr:%!(EXTRA []uint8=[123 34 110 97 109 101 34 58 34 122 104 97 110 103 115 97 110 34 44 34 112 97 115 115 34 58 34 49 50 51 52 53 54 34 44 34 97 103 101 34 58 50 48 125])
byte arr : [123 34 110 97 109 101 34 58 34 122 104 97 110 103 115 97 110 34 44 34 112 97 115 115 34 58 34 49 50 51 52 53 54 34 44 34 97 103 101 34 58 50 48 125]
&{zhangsan}
#10
更多评论
嗯,我遇到的是这个错误:
json: cannot unmarshal array into Go struct field
意思是说...go没法反序列化一个array到go的结构体字段里去..?
#2