Go 맵을 json으로 변환 Go 맵을 json 문자열로 변환하려고 했습니다.encoding/json보안관님, 하지만 결국 공염불이 됐습니다 제 코드는 다음과 같습니다. package main import ( "encoding/json" "fmt" ) type Foo struct { Number int `json:"number"` Title string `json:"title"` } func main() { datas := make(map[int]Foo) for i := 0; i < 10; i++ { datas[i] = Foo{Number: 1, Title: "test"} } jsonString, _ := json.Marshal(datas) fmt.Println(datas) fmt.Println(json..