將JSON Snake Case 鍵轉換為Camel Case 鍵
在Go 中,JSON 物件中的Snake_case 鍵可以遞歸地轉換為鍵基於Go 的資料結構和JSON 編碼/解碼功能的技術。
一種方法涉及定義兩個僅在 JSON 標記上不同的結構,以便在它們之間輕鬆轉換。以下程式碼示範了這一點:
<code class="go">package main import ( "encoding/json" "fmt" ) type ESModel struct { AB string `json:"a_b"` } type APIModel struct { AB string `json:"aB"` } func main() { b := []byte(`{ "a_b": "c" }`) var x ESModel json.Unmarshal(b, &x) b, _ = json.MarshalIndent(APIModel(x), "", " ") fmt.Println(string(b)) }</code>
對於更一般的轉換,另一種方法是將 JSON 文件解組到映射中。如果成功,可以應用關鍵修復並對映射中的每個值進行遞歸呼叫。
<code class="go">package main import ( "bytes" "encoding/json" "fmt" "strings" ) func main() { b := json.RawMessage(`{ "a_b": "c", "d_e": ["d"], "e_f": { "g_h": { "i_j": "k", "l_m": {} } } }`) x := convertKeys(b) buf := &bytes.Buffer{} json.Indent(buf, []byte(x), "", " ") fmt.Println(buf.String()) } func convertKeys(j json.RawMessage) json.RawMessage { m := make(map[string]json.RawMessage) if err := json.Unmarshal([]byte(j), &m); err != nil { return j } for k, v := range m { fixed := fixKey(k) delete(m, k) m[fixed] = convertKeys(v) } b, err := json.Marshal(m) if err != nil { return j } return json.RawMessage(b) } func fixKey(key string) string { return strings.ToUpper(key) }</code>
以上是如何在Go中將JSON鍵從snake_case轉換為camelCase?的詳細內容。更多資訊請關注PHP中文網其他相關文章!