我正在嘗試用 Go 編寫一個播客下載器。以下代碼解析 RSS 提要,但將解析后的數(shù)據(jù)打印到標(biāo)準(zhǔn)輸出時,該頻道的鏈接為空。我不知道為什么。有什么建議?我是 Go 的新手。package mainimport ( "encoding/xml" "fmt" "net/http")type Enclosure struct { Url string `xml:"url,attr"` Length int64 `xml:"length,attr"` Type string `xml:"type,attr"`}type Item struct { Title string `xml:"title"` Link string `xml:"link"` Desc string `xml:"description"` Guid string `xml:"guid"` Enclosure Enclosure `xml:"enclosure"` PubDate string `xml:"pubDate"`}type Channel struct { Title string `xml:"title"` Link string `xml:"link"` Desc string `xml:"description"` Items []Item `xml:"item"`}type Rss struct { Channel Channel `xml:"channel"`}func main() { resp, err := http.Get("http://www.bbc.co.uk/programmes/p02nrvz8/episodes/downloads.rss") if err != nil { fmt.Printf("Error GET: %v\n", err) return } defer resp.Body.Close() rss := Rss{} decoder := xml.NewDecoder(resp.Body) err = decoder.Decode(&rss) if err != nil { fmt.Printf("Error Decode: %v\n", err) return } fmt.Printf("Channel title: %v\n", rss.Channel.Title) fmt.Printf("Channel link: %v\n", rss.Channel.Link) for i, item := range rss.Channel.Items { fmt.Printf("%v. item title: %v\n", i, item.Title) }}
1 回答

慕的地10843
TA貢獻(xiàn)1785條經(jīng)驗 獲得超8個贊
來自 rss 提要的 xml 有一個帶有兩個子“l(fā)ink”元素的 channel 元素:“l(fā)ink”和“atom:link”。即使有一個命名空間前綴,Go xml unmarshaller 也會看到?jīng)_突。另請參閱github 上的本地名稱沖突失敗和問題。
<?xml version="1.0" encoding="UTF-8"?>
...
<channel>
<title>Forum - Sixty Second Idea to Improve the World</title>
<link>http://www.bbc.co.uk/programmes/p02nrvz8</link>
...
<atom:link href="http://www.bbc.co.uk/..." />
- 1 回答
- 0 關(guān)注
- 333 瀏覽
添加回答
舉報
0/150
提交
取消