Pular para o conteúdo principal
eLearner.app
Módulo 5 · Lição 4 de 524/50 no curso~12 min
Lições do módulo (4/5)

Tags de campo e JSON

Tags on struct fields are metadata strings, read via reflection by libraries like encoding/json, encoding/xml, validators, ORMs. They are written between backticks (raw string) right after the field's type.

Syntax

Go
type User struct {
    Name string `json:"nome"`
    Age  int    `json:"eta,omitempty"`
}

Format convention: key:"value" separated by spaces (NOT commas) for multiple keys:

Go
type User struct {
    Email string `json:"email" validate:"required,email"`
}

json tag: options

The most common option is json, used by encoding/json:

TagEffect
json:"nome"Renames the field to nome in the JSON output
json:"nome,omitempty"Omits the field if it is at its zero value
json:"-"Do not serialize/deserialize this field
json:",omitempty"Keeps the Go field name but with omitempty
Go
type User struct {
    Name     string `json:"nome"`
    Age      int    `json:"eta,omitempty"`
    Password string `json:"-"`
}

u := User{Name: "Ada", Age: 0, Password: "segreto"}
b, _ := json.Marshal(u)
fmt.Println(string(b))   // {"nome":"Ada"}

Age is omitted (zero value 0 + omitempty); Password is excluded entirely.

Marshal and Unmarshal

Go
// struct -> JSON
b, err := json.Marshal(u)

// JSON -> struct (needs a POINTER)
var u2 User
err = json.Unmarshal(b, &u2)

Unmarshal only accepts a pointer, because it must write into the value's fields.

Other common tags

  • xml:"..."encoding/xml
  • yaml:"..." — yaml.v3
  • db:"..." — sqlx / pgx
  • validate:"..." — go-playground/validator
  • form:"..." — gin / echo binding

Libraries read them via reflection (reflect.StructTag.Get("json")): they are just strings until someone interprets them.

Try it

Exercício#go.m5.l4.e1
Tentativas: 0Carregando…

Add the json:"nome" tag to the Name field and the json:"eta" tag to the Age field.

Carregando editor…
Mostrar dica

Tags are raw strings between backticks right after the field type.

Solução disponível após 3 tentativas

Exercício#go.m5.l4.e2
Tentativas: 0Carregando…

Add the omitempty option to the Age field: it must be omitted when it is 0.

Carregando editor…
Mostrar dica

Options come after the name, separated by a comma: json:"nome,omitempty".

Solução disponível após 3 tentativas

Quiz#go.m5.l4.e3
Pronto

What does it print with tags json:"nome" and json:"eta"?

Go
u := User{Name: "Ada", Age: 36}
b, _ := json.Marshal(u)
fmt.Println(string(b))
Opções de resposta

Recap

  • Tags are raw strings between backticks: `key:"value" key2:"value2"`.
  • json:"nome": rename. omitempty: omit if zero value. -: exclude.
  • NON-exported (lowercase) fields are ignored by encoding/json.
  • json.Marshal(v)json.Unmarshal(data, &v) (pointer).
  • Same mechanism for xml, yaml, db, validate, form, …