初级会员
  • 第 16833 位会员
  • smartxff
  • 2018-03-14 15:15:55
  • Offline
  • 19 97

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • a.B = append(a.B, struct{ Name string }{Name:"b" }) 还要注意一点的是,有tag和无tag属于不同类型 type A struct {B []struct{Name string `json:"name"`}} 赋值时必须加上tag append(a.B, struct{ Name string `json:"name"` }{Name:"1" })