json.Unmarshal 操作對象是一個 []byte,也就意味著被處理的JSON要全部加載到內(nèi)存。
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供加格達奇企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、HTML5建站、小程序制作等業(yè)務。10年已為加格達奇眾多企業(yè)、政府機構(gòu)等服務。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進行中。如果有一個加載完的JSON使用json.Unmarshal會快一些。
json.Decoder 操作的是一個stream,或者其他實現(xiàn)了io.Reader接口的類型。意味著可以在接收或傳輸?shù)耐瑫r對其進行解析。當處理一組較大數(shù)據(jù)時無需重新copy整個JSON到內(nèi)存中。
最好的選擇辦法如下:
如果數(shù)據(jù)來自一個io.Reader或者需要從一個stream中讀取數(shù)據(jù),就選擇json.Decoder
如果已經(jīng)將整個JSON加載到內(nèi)存中了就使用json.Unmarshal
不定類型的解析
有時候遇到字段不定的JSON,需要一邊判斷一邊解析。如:
t1 := `{"type":"a", id:"aaa"}`t2 := `{"type":"b", id:22222}`
解組到interface{}
可以先統(tǒng)一解組到interface{} 然后判斷關(guān)鍵字段再進行后續(xù)處理。
type Data struct { Type string `json:"type"` Id interface{} `json:"id"`}func decode(t string) { var x Data err := json.Unmarshal([]byte(t), &x) if err != nil { panic(err) } if x.Type == "a" { fmt.Println(x.Id.(string)) } else { fmt.Println(x.Id.(float64)) //json解析中number默認作為float64解析 } }func main() { t1 := `{"type":"a", "id":"aaa"}` t2 := `{"type":"b", "id":22222}` decode(t1) decode(t2) }
結(jié)果
aaa 22222
以上就是golang不規(guī)則json解析的詳細內(nèi)容,更多請關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!