无结构体动态数据的 YAML 到 JSON 转换
处理无法映射到结构体的动态数据时,将 YAML 转换为 JSON可能会带来挑战。考虑以下 YAML 字符串:
Services: - Orders: - ID: $save ID1 SupplierOrderCode: $SupplierOrderCode - ID: $save ID2 SupplierOrderCode: 111111
要将此 YAML 字符串转换为 JSON,一种方法是将其解组为 interface{} 类型。然而,这会导致类型不受支持,因为用于解组键值对的默认类型是map[interface{}]interface{}。
要解决这个问题,我们需要转换map[interface{ }]interface{} 值递归映射[string]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中文网其他相关文章!