在Go 中將JSON 檔案讀取為物件
在Go 中,嘗試讀取JSON 檔案並將其解析為物件時可能會遇到困難JSON 物件。
失敗嘗試
將JSON 文件讀取為對象的一些失敗嘗試包括:
plan, _ := ioutil.ReadFile(filename) // filename is the JSON file to read var data interface{} err := json.Unmarshal(plan, data)
這會導致錯誤「json: Unmarshal(nil)".
generatePlan, _ := json.MarshalIndent(plan, "", " ") // plan is a pointer to a struct
嘗試2:
嘗試2:plan, _ := ioutil.ReadFile(filename) var data interface{} err := json.Unmarshal(plan, &data)
嘗試2:
bool, for JSON booleans float64, for JSON numbers string, for JSON strings []interface{}, for JSON arrays map[string]interface{}, for JSON objects nil for JSON null
嘗試2:試試這會產生一個字串輸出,但將其轉換為字串會使其不可能作為JSON 循環object.解解決這個問題的關鍵在於json.Unmarshal所指向的值。它必須是一個指針。 型別斷言在unmarshal 中使用空介面時,需要使用型別斷言來取得底層值,就像原生Go 一樣型別: 最佳實踐強烈建議使用特定結構使用Unmarshal 填充JSON 資料。這提供了更好的清晰度並避免了類型斷言的需要。
以上是如何在 Go 中將 JSON 檔案讀取為物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!