gpt4 book ai didi

xml - 无法从 GO 中的 XML 中提取正确的数据

转载 作者:IT王子 更新时间:2023-10-29 02:30:30 26 4
gpt4 key购买 nike

我正在从网络上检索一些 XML,但在提取我需要的数据时遇到问题。这是 XML:

<metadata xmlns="http://musicbrainz.org/ns/mmd-2.0#" xmlns:ext="http://musicbrainz.org/ns/ext#-2.0" created="2013-04-13T16:54:01.107Z">
<artist-list count="2" offset="0">
<artist id="35dac7d2-0b1f-470f-9a5a-c53c8821f6d6" type="Person" ext:score="100">
<name>Eric Prydz</name>
<sort-name>Prydz, Eric</sort-name>
<gender>male</gender>
<country>SE</country>
</artist>
</artist-list>
</metadata>

我想提取姓名、性别和国家。这是代码:

package main

import (
"encoding/xml"
"fmt"
"io/ioutil"
"net/http"
)

func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "http://www.musicbrainz.org/ws/2/artist/?query=artist:Fred", nil)
res, _ := client.Do(req)

bs, _ := ioutil.ReadAll(res.Body)

var artist Artist
xml.Unmarshal(bs, &artist)

fmt.Printf("%#v\n", artist)
}

type Artist struct {
Name string `xml: "name"`
Gender string `xml: "gender"`
Country string `xml: "country"`
}

但每次我运行这个我总是得到这个:

main.Artist{Name:"", Gender:"", Country:""}

谁能指出问题出在哪里?
谢谢。

最佳答案

好的,问题是,您没有充分描述要解码的 xml 数据。你的数据看起来更像

struct metadata {
// you need to tag it because go field names can't contain -'s
artists []Artist "artist-list"
}

类似的东西应该可以工作。基本上,Unmarshal 只会查看顶级节点,不会向下寻找结构。

关于xml - 无法从 GO 中的 XML 中提取正确的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15991443/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com