关于 json 化,定义了 IdArr 的结构体,主要目的是为了接收前端字符数组,自动转换为数值型; 在嵌套到 A 中时,可以取到 ids 的值,more 的值永远为空.
package main
import (
"encoding/json"
"fmt"
"strconv"
)
type IdArr struct {
Ids []uint64 `json:"ids"`
}
type A struct {
IdArr
More string `json:"more"`
}
func (s *IdArr) UnmarshalJSON(data []byte) error {
type Temp IdArr
t := struct {
Ids []string `json:"ids"`
*Temp
}{
Temp: (*Temp)(s),
}
if err := json.Unmarshal(data, &t); err != nil {
return err
}
for _, id := range t.Ids {
uId, err := strconv.ParseInt(id, 10, 64)
if err != nil {
return err
}
s.Ids = append(s.Ids, uint64(uId))
}
return nil
}
func main() {
d := `
{"ids":["1213334"], "more": "text"}
`
a := &A{}
json.Unmarshal([]byte(d), &a)
fmt.Printf("%+v", a)
}
输出
&{IdArr:{Ids:[1213334]} More:}
https://play.golang.org/p/mjR2TrSfbh7
卡了半天了,请问什么原因呢?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.