gpt4 book ai didi

xml - 如何使用冒号解码 xml 元素

转载 作者:行者123 更新时间:2023-12-01 21:17:23 25 4
gpt4 key购买 nike

正如代码所言,我无法在 Go 中使用冒号解码 xml 元素。

https://play.golang.org/p/zMm5IQSfS01

package main

import (
"fmt"
"encoding/xml"
)

type Obj struct {
XMLName xml.Name `xml:"book"`
AbcName string `xml:"abc:name"`
}

func main() {
a := []byte(`<book><abc:name>text</abc:name></book>`)
obj := &Obj{}
if err := xml.Unmarshal(a, obj); err != nil {
panic(err)
}
fmt.Printf("%#v\n", obj)
}

代码输出:

&main.Obj{XMLName:xml.Name{Space:"", Local:"book"}, AbcName:""}

是否可以在 Golang 中使用冒号解码 xml 元素?如果是,怎么办?

最佳答案

xml.Unmarshal

If the XMLName field has an associated tag of the form "name" or"namespace-URL name", the XML element must have the given name (and,optionally, name space) or else Unmarshal returns an error.

type Obj struct {
XMLName xml.Name `xml:"book"`
AbcName string `xml:"abc name"`
DefName string `xml:"def name"`
}

func main() {
a := []byte(`<book><abc:name>text</abc:name><def:name>some other text</def:name></book>`)
obj := &Obj{}
if err := xml.Unmarshal(a, obj); err != nil {
panic(err)
}
fmt.Printf("%#v\n", obj)
}

关于xml - 如何使用冒号解码 xml 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63857011/

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