JSON을 구문 분석할 때 Go 구조체 필드가 ​​비어 있는 이유는 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-12 10:27:02
원래의
795명이 탐색했습니다.

Why are my Go struct fields empty when parsing JSON?

Go에서 JSON을 구조체로 구문 분석

JSON을 Go 구조체로 구문 분석하는 동안 예기치 않은 출력이 발생합니다: 빈 구조체 값 거짓 부울 값입니다. 기본적으로 구조체 필드는 인코더/디코더에서 인식되도록 내보내야 합니다(대문자로 시작). 수정된 버전의 코드는 다음과 같습니다.

// Define your struct with exported fields
type Settings struct {
    ServerMode bool `json:"serverMode"`
    SourceDir  string `json:"sourceDir"`
    TargetDir  string `json:"targetDir"`
}

func main() {
    // Open the config file
    configFile, err := os.Open("config.json")
    if err != nil {
        printError("opening config file", err.Error())
    }

    jsonParser := json.NewDecoder(configFile)
    settings := Settings{} // Initialize the struct

    // Decode the JSON
    if err = jsonParser.Decode(&settings); err != nil {
        printError("parsing config file", err.Error())
    }

    fmt.Printf("%v %s %s", settings.ServerMode, settings.SourceDir, settings.TargetDir)
}
로그인 후 복사

이러한 수정을 통해 인코더/디코더는 구조체의 필드에 적절하게 액세스하고 수정할 수 있어 원하는 구문 분석 값을 얻을 수 있습니다.

위 내용은 JSON을 구문 분석할 때 Go 구조체 필드가 ​​비어 있는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿