首页 >后端开发 >Golang >如何在 Go 中将动态 YAML 字符串转换为 JSON?

如何在 Go 中将动态 YAML 字符串转换为 JSON?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-10 04:11:20749浏览

How to Convert a Dynamic YAML String to JSON in Go?

在没有预定义数据结构的情况下将 YAML 转换为 JSON

问题:

如何转换具有动态结构的 YAML 字符串转换为 JSON 字符串?解组到接口{}会导致不受支持的数据类型(map[interface {}]interface {})。

答案:

挑战在于意想不到的情况将 YAML 解组到通用接口时的嵌套映射和切片深度。{}以下是一种将它们递归转换为 map[string]interface{} 和 []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
}

示例用法:

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)
}

输出:

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

注意:此转换过程可能会导致元素顺序丢失,因为Go 地图是无序的。

以上是如何在 Go 中将动态 YAML 字符串转换为 JSON?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn