일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- react-hook-form
- backend
- JavaSpring
- 오블완
- satisfiles
- JPA
- React
- typescript
- 웹애플리케이션서버
- ReactHooks
- java
- RTK
- component
- Redux
- tanstackquery
- 티스토리챌린지
- golang
- hook
- javascript
- test
- go
- frontend
- Chakra
- storybook
- Spring
- Gin
- designpatterns
- css
- springboot
- Today
- Total
목록2024/09/08 (2)
bkdragon's log
gin Context 에 있는 JSON 메서드는 json 응답을 빼주는 데 사용한다. 내부 구현을 살펴보자. func (c *Context) JSON(code int, obj any) { c.Render(code, render.JSON{Data: obj})}JSON 은 Render라는 메서드를 호출하는데, 상태 코드와 render.JSON을 구조체를 인자로 받는다. c.Render를 먼저 살펴보면func (c *Context) Render(code int, r render.Render) { c.Status(code) if !bodyAllowedForStatus(code) { r.WriteContentType(c.Writer) c.Writer.WriteHeaderN..
gin 의 Context 에 있는 ShouldBindJSON 메서드는 JSON 데이터를 구조체로 바꿔주는 역할을 한다. 아마 요청을 읽고 Unmarshal 하는 과정이 있지 않을까 싶은데 실제 구현이 궁금해서 코드를 좀 찾아보았다.func (c *Context) ShouldBindJSON(obj any) error { return c.ShouldBindWith(obj, binding.JSON)}func (c *Context) ShouldBindWith(obj any, b binding.Binding) error { return b.Bind(c.Request, obj)}ShouldBindJSON 는 ShouldBindWith 를 호출한다. ShouldBindWith 는 Binding 구조체와 o..