首頁 > 後端開發 > Golang > 如何在Go中不使用XPath來遍歷和處理XML資料?

如何在Go中不使用XPath來遍歷和處理XML資料?

Mary-Kate Olsen
發布: 2024-11-30 15:40:10
原創
276 人瀏覽過

How Can I Traverse and Process XML Data in Go without Using XPath?

在沒有精確Xpath 的情況下在Go 中遍歷XML 資料

當使用xml.UnMarshal 將XML 解碼為結構時,在使用xml.UnMarshal 將XML 解碼為結構時,在處理動態時可能會遇到限製或分層資料集。為了解決這個問題,可以考慮利用自訂遍歷機制以靈活的方式處理節點及其後代。

實作

  1. 定義遞歸節點結構體:

    type Node struct {
     XMLName xml.Name
     Content []byte `xml:",innerxml"`
     Nodes   []Node `xml:",any"`
    }
    登入後複製
  2. func walk(nodes []Node, f func(Node) bool) {
     for _, n := range nodes {
         if f(n) {
             walk(n.Nodes, f)
         }
     }
    }
    登入後複製

// Create a slice of nodes from your XML data
nodes := []Node{}

// Recursively walk the nodes
walk(nodes, func(n Node) bool {
    // Process the node here (e.g., check type, access attributes)
    return true
})
登入後複製
建立遞歸遍歷的步行函數:

這個函數遞歸遍歷節點切片,對每個遇到的節點呼叫提供的函數f
type Node struct {
    XMLName xml.Name
    Attrs   []xml.Attr `xml:",any,attr"`
    Content []byte     `xml:",innerxml"`
    Nodes   []Node     `xml:",any"`
}

func (n *Node) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    n.Attrs = start.Attr
    type node Node
    return d.DecodeElement((*node)(n), &start)
}
登入後複製

遍歷與處理節點:

透過組合以上組件,可以如下遍歷XML資料並處理節點:範例屬性要在遍歷中包含屬性,請修改 Node 結構及其 UnmarshalXML方法:結論利用此遞歸遍歷方式,可以有效地遍歷和處理XML數據,而不需要依賴特定的X 路徑。這提供了更大的靈活性,讓您可以輕鬆處理動態或可變的 XML 結構。

以上是如何在Go中不使用XPath來遍歷和處理XML資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板