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

如何在结构中打印结构切片的标记

如何在结构中打印结构切片的标记

Go
隔江千里 2023-05-04 17:35:11
我有结构 Config ,它由 Field SliceOfAnotherStruct组成,其中包含指向AnotherStruct 的指针切片 。在这里,我如何才能在 AnotherStruct 中获取字段 Bank 的 json 标记。type Config struct {    SliceOfAnotherStruct         []*AnotherStruct        `bson:"anotherStruct" json:"anotherStruct" validate:"required,dive,required"`}type AnotherStruct struct {    Name                   string        `bson:"name" json:"name" validate:"required"`    Cost                   string        `bson:"cost" json:"cost" validate:"required"`    Bank    string        `bson:"bank" json:"bank" validate:"required"`    IFSC     string        `bson:"ifsc" json:"ifsc" validate:"required"`}
查看完整描述

1 回答

?
撒科打诨

TA贡献1934条经验 获得超2个赞

使用创建新变量AnotherStruct,然后使用反射尝试获取该Bank字段,之后您将能够获取它的标签。


// new object created from struct AnotherStruct

obj := AnotherStruct{}


// getting `Bank` field information. 

// the `FieldByName` function return two variables, 

// 1. the field data 

// 2. a boolean data, determines whether field is exists or not

bankField, ok := reflect.TypeOf(obj).FieldByName("Bank")

if ok {

    // if the field is exists, then get the desired tag

    jsonTagValue := bankField.Tag.Get("json")

    fmt.Println(jsonTagValue) // bank

}

工作游乐场:https://play.golang.org/p/TJDCEVm23Hz


查看完整回答
反对 回复 2023-05-04
  • 1 回答
  • 0 关注
  • 97 浏览
慕课专栏
更多

添加回答

举报

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