[Nomad Coin] Rest API - #6.1 Marshal and Field Tags
#6.1 Marshal and Field Tags 이 JSON을 유저에게 전달하고, 코드를 한 줄로 줄여볼 것이다. Go가 struct을 Json으로 바꾸는 방식을 어떻게 바꿀 수 있는지도 볼 것이다. 우선 PrintF를 Fprintf로 바꾸자. 콘솔이 아닌 writer에 작성하고 싶을 때 쓰는 것이다. Fprintf를 쓰면 writer와 text를 받고 format 그리고 value를 받는다. func documentation(rw http.ResponseWriter, r *http.Request) { data := []URLDescription{ { URL: "/", Method: "GET", Description: "See Documentation", }, } b, err := json.Marsha..
Go/Blockchain
2022. 7. 20. 03:32