[Go/Golang] 구조체 JSON 변환 시, omitempty가 적용되지 않는 경우
2021-05-27 06:42

[Go/Golang] 구조체 JSON 변환 시, omitempty가 적용되지 않는 경우

Prologue
Go에서 오브젝트를 JSON으로 변환하려면, 해당 오브젝트를 기술하는 구조체가 선언되어 있어야 합니다. 예를 들자면 다음과 같습니다.
type Score struct {
Korean uint `json:"...
Go
Encoding
Golang
go언어
JSON
marshaling
omitempty
struct
구조체
0043

댓글