無結構體動態資料的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中文網其他相關文章!