我正在嘗試動(dòng)態(tài)創(chuàng)建一個(gè)結(jié)構(gòu)片段,我可以將數(shù)據(jù)編組到其中,但在運(yùn)行時(shí)基于一些未知的結(jié)構(gòu)類型來(lái)執(zhí)行它。我這樣做是因?yàn)槲蚁胍粋€(gè)通用的代碼,可以解組任何實(shí)現(xiàn)特定接口的東西。例如(偽代碼)func unmarshalMyData(myInterface MyInterface, jsonData []byte) { targetSlice := myInterface.EmptySlice() json.Unmarshal(jsonData, &targetSlice)}我嘗試了幾種不同的選擇。似乎最有希望的是使用reflect包來(lái)構(gòu)造切片。不幸的是,在解組之后,動(dòng)態(tài)創(chuàng)建的切片的類型為[]interface{}. 如果我在解組之前打印出動(dòng)態(tài)創(chuàng)建的切片的類型,它將打印[]*main.myObj. 誰(shuí)能解釋為什么?查看游樂場(chǎng)鏈接: https: //play.golang.org/p/vvf1leuQeY是否有其他方法可以動(dòng)態(tài)創(chuàng)建正確解組的結(jié)構(gòu)切片?我知道json.RawMessage,但有幾個(gè)原因我不能使用它......我的 json 中沒有“類型”字段。此外,我正在解組的代碼沒有關(guān)于它正在解組的結(jié)構(gòu)的編譯時(shí)知識(shí)。它只知道結(jié)構(gòu)實(shí)現(xiàn)了特定的接口。一些讓我困惑的代碼為什么動(dòng)態(tài)創(chuàng)建的切片在解組后不保持其類型:package mainimport ( "encoding/json" "fmt" "reflect")func main() { input := `[{"myField":"one"},{"myField":"two"}]` myObjSlice := []*myObj{} fmt.Printf("Type of myObjSlice before unmarshalling %T\n", myObjSlice) err := json.Unmarshal([]byte(input), &myObjSlice) if err != nil { panic(err) } fmt.Printf("Type of myObjSlice after unmarshalling %T\n", myObjSlice) myConstructedObjSlice := reflect.MakeSlice(reflect.SliceOf(reflect.TypeOf(&myObj{})), 0, 0).Interface() fmt.Printf("Type of myConstructedObjSlice before unmarshalling %T\n", myConstructedObjSlice) err = json.Unmarshal([]byte(input), &myConstructedObjSlice) if err != nil { panic(err) } fmt.Printf("Type of myConstructedObjSlice after unmarshalling %T\n", myConstructedObjSlice)}type myObj struct { myField string}輸出:Type of myObjSlice before unmarshalling []*main.myObjType of myObjSlice after unmarshalling []*main.myObjType of myConstructedObjSlice before unmarshalling []*main.myObjType of myConstructedObjSlice after unmarshalling []interface {}
1 回答

慕桂英3389331
TA貢獻(xiàn)2036條經(jīng)驗(yàn) 獲得超8個(gè)贊
您正在構(gòu)建一個(gè)[]*myObjusing reflect,但隨后您將傳遞一個(gè)*interface{}to json.Unmarshal。json 包將指針的目標(biāo)視為 type interface{},因此使用其默認(rèn)類型來(lái)解組。您需要?jiǎng)?chuàng)建一個(gè)指向您創(chuàng)建的切片類型的指針,因此對(duì)該Interface()方法的調(diào)用會(huì)返回您想要解組的確切類型,即*[]*myObj.
sliceType := reflect.SliceOf(reflect.TypeOf(&myObj{}))
slicePtr := reflect.New(sliceType)
err = json.Unmarshal([]byte(input), slicePtr.Interface())
- 1 回答
- 0 關(guān)注
- 143 瀏覽
添加回答
舉報(bào)
0/150
提交
取消