>백엔드 개발 >Golang >동적 데이터를 사용하고 구조체 없이 YAML을 JSON으로 효율적으로 변환하는 방법은 무엇입니까?

동적 데이터를 사용하고 구조체 없이 YAML을 JSON으로 효율적으로 변환하는 방법은 무엇입니까?

DDD
DDD원래의
2024-11-27 19:54:11703검색

How to Efficiently Convert YAML to JSON with Dynamic Data and No Structs?

구조체가 없는 동적 데이터를 위한 YAML을 JSON으로 변환

구조체에 매핑할 수 없는 동적 데이터를 처리할 때 YAML을 JSON으로 변환 도전을 제기할 수 있습니다. 다음 YAML 문자열을 고려하세요.

Services: 
-   Orders: 
    -   ID: $save ID1
        SupplierOrderCode: $SupplierOrderCode
    -   ID: $save ID2
        SupplierOrderCode: 111111

이 YAML 문자열을 JSON으로 변환하려면 인터페이스{} 유형으로 역마샬링하는 것이 좋습니다. 그러나 키-값 쌍을 비정렬화하는 데 사용되는 기본 유형은 map[interface{}]interface{}이므로 지원되지 않는 유형이 발생합니다.

이 문제를 극복하려면 map[interface{ }]인터페이스{} 값을 [문자열]인터페이스{} 값으로 재귀적으로 매핑합니다. 다음은 이 변환을 수행하는 함수입니다.

func convert(i interface{}) interface{} {
    switch x := i.(type) {
    case map[interface{}]interface{}:
        m2 := map[string]interface{}{}
        for k, v := range x {
            m2[k.(string)] = convert(v)
        }
        return m2
    case []interface{}:
        for i, v := range x {
            x[i] = convert(v)
        }
    }
    return i
}

이 함수를 사용하면 다음과 같이 YAML 문자열을 JSON으로 변환할 수 있습니다.

import (
    "encoding/json"
    "fmt"
    "github.com/go-yaml/yaml"
)

const s = `Services:
-   Orders:
    -   ID: $save ID1
        SupplierOrderCode: $SupplierOrderCode
    -   ID: $save ID2
        SupplierOrderCode: 111111
`

func main() {
    fmt.Printf("Input: %s\n", s)
    var body interface{}
    if err := yaml.Unmarshal([]byte(s), &body); err != nil {
        panic(err)
    }

    body = convert(body)

    if b, err := json.Marshal(body); err != nil {
        panic(err)
    } else {
        fmt.Printf("Output: %s\n", b)
    }
}

출력:

Input: Services:
-   Orders:
    -   ID: $save ID1
        SupplierOrderCode: $SupplierOrderCode
    -   ID: $save ID2
        SupplierOrderCode: 111111

Output: {"Services":[{"Orders":[
    {"ID":"$save ID1","SupplierOrderCode":"$SupplierOrderCode"},
    {"ID":"$save ID2","SupplierOrderCode":111111}]}]}

위 내용은 동적 데이터를 사용하고 구조체 없이 YAML을 JSON으로 효율적으로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.