Rumah >pembangunan bahagian belakang >Golang >Bagaimana untuk Menangkap Semua Elemen dalam Tatasusunan XML Semasa Unmarshaling di Golang?
Masalah:
Apabila menyahmarshaling tatasusunan XML ke dalam struct, hanya elemen pertama tatasusunan diambil semula.
Kod Asal:
<code class="go">type HostSystemIdentificationInfo []struct { IdentiferValue string `xml:"identifierValue"` IdentiferType struct { Label string `xml:"label"` Summary string `xml:"summary"` Key string `xml:"key"` } `xml:"identifierType"` } func unmarshal(xmlBytes []byte) (HostSystemIdentificationInfo, error) { var t HostSystemIdentificationInfo err := xml.Unmarshal(xmlBytes, &t) return t, err }</code>
Isu:
Yang di atas kod cuba untuk menyahmarshal rentetan XML ke dalam kepingan struct HostSystemIdentificationInfo, tetapi ia hanya menangkap elemen pertama tatasusunan.
Penyelesaian:
Untuk menangkap semua elemen tatasusunan XML, anda perlu menggunakan penyahkod XML dan memanggil kaedah Nyahkodnya beberapa kali. Kod di bawah menunjukkan cara untuk mencapai ini:
<code class="go">// ... (same struct definitions as in the original code) func unmarshal(xmlBytes []byte) (HostSystemIdentificationInfo, error) { dec := xml.NewDecoder(bytes.NewReader(xmlBytes)) var t HostSystemIdentificationInfo for { err := dec.Decode(&t) if err == io.EOF { break } if err != nil { return nil, err } } return t, nil }</code>
Penjelasan:
Penggunaan:
<code class="go">xmlBytes = []byte(` <HostSystemIdentificationInfo xsi:type="HostSystemIdentificationInfo"> <identifierValue>...</identifierValue> <identifierType>...</identifierType> </HostSystemIdentificationInfo> <HostSystemIdentificationInfo xsi:type="HostSystemIdentificationInfo"> <identifierValue>...</identifierValue> <identifierType>...</identifierType> </HostSystemIdentificationInfo> `) t, err := unmarshal(xmlBytes) if err != nil { log.Fatal(err) } fmt.Println(t) // All elements of the XML array will be printed</code>
Atas ialah kandungan terperinci Bagaimana untuk Menangkap Semua Elemen dalam Tatasusunan XML Semasa Unmarshaling di Golang?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!