Go에서 소문자 필드 이름이 있는 구조체에 대해 JSON 인코딩이 실패하는 이유는 무엇입니까?
Go에서 구조체의 필드는 패키지에만 표시됩니다. 첫 글자가 대문자인지 정의됩니다. 아래와 같이 소문자 필드 이름으로 구조체를 인코딩하려고 하면 빈 JSON 출력이 발생합니다.
type Machine struct { m_ip string m_type string m_serial string } func main() { m := &Machine{m_ip: "test", m_type: "test", m_serial: "test"} m_json, err := json.Marshal(m) if err != nil { fmt.Println(err) return } fmt.Println(string(m_json)) // Prints "{}" }
이는 소문자부터 시작하기 때문에 필드가 json.Marshal 함수에 표시되지 않기 때문에 발생합니다. 편지. 그러나 다음과 같이 필드 이름을 대문자로 변경하면 JSON 인코딩이 성공할 수 있습니다.
type Machine struct { MachIp string MachType string MachSerial string } func main() { m := &Machine{MachIp: "test", MachType: "test", MachSerial: "test"} m_json, err := json.Marshal(m) if err != nil { fmt.Println(err) return } fmt.Println(string(m_json)) // Prints "{\"MachIp\":\"test\",\"MachType\":\"test\",\"MachSerial\":\"test\"}" }
소문자 필드 이름으로 구조체를 인코딩하려면 원하는 JSON 키로 필드에 태그를 지정할 수 있습니다. 예를 들면 다음과 같습니다.
type Machine struct { MachIp string `json:"m_ip"` MachType string `json:"m_type"` MachSerial string `json:"m_serial"` } func main() { m := &Machine{MachIp: "test", MachType: "test", MachSerial: "test"} m_json, err := json.Marshal(m) if err != nil { fmt.Println(err) return } fmt.Println(string(m_json)) // Prints "{\"m_ip\":\"test\",\"m_type\":\"test\",\"m_serial\":\"test\"}" }
원하는 JSON 키로 필드에 태그를 지정하면 구조체를 소문자 필드 이름으로 인코딩할 수 있으므로 특정 시나리오에서 더 편리해집니다.
위 내용은 소문자 필드 이름이 있는 Go 구조체에서 JSON 인코딩이 실패하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!