구조체가 없는 동적 데이터를 위한 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!