我试图解码一个看起来像这样的文件

<?xml version="1.0" encoding="UTF-8"?>
<houses>
  <house name="Rhyves Flats 14" houseid="1" entryx="167" entryy="361" entryz="6" rent="0" townid="2" size="17" />
</houses>

用下面的代码
// House struct used for houses xml file
type House struct {
    XMLName xml.Name `xml:"houses"`
    HouseID uint32 `xml:"houseid,attr"`
    Name    string `xml:"name,attr"`
    EntryX  uint16 `xml:"entryx,attr"`
    EntryY  uint16 `xml:"entryy,attr"`
    EntryZ  uint16 `xml:"entryz,attr"`
    Size    int    `xml:"size,attr"`
    TownID  uint32 `xml:"townid,attr"`
    Rent    int    `xml:"rent,attr"`
}

// LoadHouses parses the server map houses
func LoadHouses(file string, list []House) error {
    // Load houses file
    f, err := ioutil.ReadFile(file)

    if err != nil {
        return err
    }

    // Unmarshal houses file
    return xml.Unmarshal(f, &list)
}

这不会返回任何错误。但是房子一片空白。一切似乎都正确,设置了attrs并设置了XMLName。

最佳答案

您的代码缺少XML的Houses部分的定义。如下图所示,然后取消编码。

type Houses struct {
    House    []House `xml:"house"`
}

关于xml - 去XML解码数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41454603/

10-16 12:26