docs: restore missing contents and align canonical stage names across docs

This commit is contained in:
2026-07-17 13:35:29 +09:00
parent f3c003fdf3
commit c8ed4742d0
11 changed files with 201 additions and 300 deletions
+4 -2
View File
@@ -1,4 +1,6 @@
# Go 언어와 JSON 다루기
# 1단계: JSON 데이터 다루기 상세 가이드
⬅ [학습 로드맵으로 돌아가기](MANUSCRIPT.md)
이 문서는 `grpccanary` 프로젝트의 **1단계: JSON 데이터 다루기**에 대한 이론적 배경과 코드 예시를 설명합니다.
@@ -21,7 +23,7 @@ Go 구조체로 JSON 데이터를 다룰 때 핵심적인 과정입니다.
## 2. 실습 코드 분석 (`examples/jsonexample/json_parser.go`)
저장소의 [json_parser.go](file:///home/godopu16/PuKi/lab/canary_projects/grpccanary/examples/jsonexample/json_parser.go) 파일은 (1) `map[string]interface{}`와의 직렬화 및 (2) 구조체(`Person`)를 이용한 매핑 방식을 모두 다룹니다.
저장소의 [json_parser.go](../examples/jsonexample/json_parser.go) 파일은 (1) `map[string]interface{}`와의 직렬화 및 (2) 구조체(`Person`)를 이용한 매핑 방식을 모두 다룹니다.
### 2.1 구조체 태그(Struct Tag) 정의
```go