Перейти до основного вмісту
eLearner.app
Модуль 5 · Урок 4 із 524/50 у курсі~12 min
Модульні уроки (4/5)

Теги полів і 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

вправи#go.m5.l4.e1
Спроби: 0Завантаження…

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

Завантаження редактора…
Показати підказку

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

Рішення доступне після 3 спроб

вправи#go.m5.l4.e2
Спроби: 0Завантаження…

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

Завантаження редактора…
Показати підказку

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

Рішення доступне після 3 спроб

Quiz#go.m5.l4.e3
Готовий

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))
Варіанти відповідей

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, …