为了账号安全,请及时绑定邮箱和手机立即绑定

反映:如何获取结构字段的名称?

反映:如何获取结构字段的名称?

Go
茅侃侃 2021-10-04 13:33:48
type User struct { Name string }func test(o interface{}) {    t := reflect.TypeOf(o)    fmt.Println(t)}u := &User{"Bob"}test(u.Name) // prints "string", but I need "Name"这在 Go 中可能吗?我想要尽可能少的“魔法弦”,而不是UpdateFields("Name", "Password")我更愿意使用UpdateFields(user.Name, user.Password)
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 149 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信