为了账号安全,请及时绑定邮箱和手机立即绑定

在 Go 中,如何解析具有混合元素/chardata/elements/chardata

在 Go 中,如何解析具有混合元素/chardata/elements/chardata

Go
白猪掌柜的 2022-11-08 16:11:34
假设我有一个可以多次引用元素的结构:    <?xml version="1.0" encoding="UTF-8"?>    <book category="cooking">      <title>Everyday Italian</title>      <author>Giada De Laurentiis</author>      <year>2005</year>      <price>30.00</price>      Blah Blah Blah Bleh Blah of <year/> written by <author/>    </book>我如何解析这个 XML(或者更好地说,我如何描述结构),以便我可以拥有对它的这些内部引用?    type Book struct{       t string `xml:"book>title"`       p string `xml:"book>price"`       y string `xml:"book>year"`       a string `xml:"book>author"`       blah string ???????    }天真的方法(https://go.dev/play/p/JVM98pCcI0D),只是描述blah为cdata显然是错误的,因为引用<year/>和<author/>正在丢失。在这里定义的正确方法是什么blah,使得它的内部结构,解析后仍然可用?
查看完整描述

1 回答

?
qq_笑_17

TA贡献1818条经验 获得超7个赞

基于icza评论的解决方案:


func (b *Book) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {

    for {

        t, err := d.Token()

        if err != nil {

            if err != io.EOF {

                return err

            }

            return nil

        }


        switch t := t.(type) {

        case xml.StartElement:

            var f interface{} // field

            var r string      // replace

            switch t.Name.Local {

            case "title":

                f = &b.Title

            case "author":

                if len(b.Author) > 0 { // if "author" was already decoded then assume this is the element in the "blah chardata"

                    r = b.Author // if you want <author/> to appear in Text then do `r = "<author/>"` instead

                } else {

                    f = &b.Author

                }

            case "year":

                if len(b.Year) > 0 { // same logic as for author above

                    r = b.Year

                } else {

                    f = &b.Year

                }

            case "price":

                f = &b.Price

            }

            if f != nil {

                if err := d.DecodeElement(f, &t); err != nil {

                    return err

                }

            }

            if len(r) > 0 {

                b.Text += " " + r + " " // add empty space for padding the replacement string

            }

        case xml.CharData:

            s := strings.TrimSpace(string(t))

            if len(s) > 0 {

                b.Text += s

            }

        }

    }

    return nil

}


查看完整回答
反对 回复 2022-11-08
  • 1 回答
  • 0 关注
  • 65 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信