我有结构 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"`
}
撒科打诨
相关分类