gpt4 book ai didi

xml - Go:编码 XML 时重复的标签

转载 作者:IT王子 更新时间:2023-10-29 01:45:43 25 4
gpt4 key购买 nike

我已经在 Go 中为 xml 创建了结构:

type ExceptionSorter struct {
ExceptionClass string `xml:"class-name,attr"`
}

type ValidConnection struct {
ConnClass string `xml:"class-name,attr"`
}

type Validation struct {
ValidConnection ValidConnection `xml:"ns1:valid-connection-checker"`
ExceptionSorter ExceptionSorter `xml:"ns1:exception-sorter"`
}

type DataSource struct {
Jta bool `xml:"jta,attr"`
JndiName string `xml:"jndi-name,attr"`
PoolName string `xml:"pool-name,attr"`
Enabled bool `xml:"enabled,attr"`
JavaContext bool `xml:"use-java-context,attr"`
Spy bool `xml:"spy,attr"`
UseCcm bool `xml:"use-ccm,attr"`
Connect string `xml:"ns1:datasource>ns1:connection-url"`
Class string `xml:"ns1:datasource>ns1:driver-class"`
Driver string `xml:"ns1:datasource>ns1:driver"`
MinPool int `xml:"ns1:datasource>ns1:pool>min-pool-size"`
MaxPool int `xml:"ns1:datasource>ns1:pool>max-pool-size"`
SecUser string `xml:"ns1:datasource>ns1:security>ns1:user-name"`
SecPw string `xml:"ns1:datasource>ns1:security>ns1:password"`
Validation Validation `xml:"ns1:datasource>ns1:validation"`
Timeout string `xml:"ns1:datasource>ns1:timeout,omitempty"`
Statement string `xml:"ns1:datasource>ns1:statement,omitempty"`
}

type DataSources struct {
XmlName string `xml:"xmlns:xsi,attr"`
XmlNs string `xml:"xmlns:ns1,attr"`
SchemaLocn string `xml:"xsi:schemaLocation,attr"`
DataSource DataSource `xml:"ns1:datasource"`
}

我有两个问题:

1) 当我尝试对结构进行编码时,我在意想不到的地方得到了重复项:

    <DataSources ....>
<ns1:datasource ....>
<ns1:datasource>

奇怪的是,Validation 标签没有重复。但我看不出我处理它们的方式有什么不同。

2) 我似乎找不到将命名空间放在开始标记中的方法。显然,该名称不会使用冒号。但是,如果我添加一个“xml.Name”元素,起始标记也会重复。

这是我在 Playground 中运行它的尝试:http://play.golang.org/p/G5NvLt-ZK7

跟进:

好的,我已经想出了如何通过删除定义中的“类型”来摆脱重复:

type datasources struct {
DataSource
}

但是我失去了与之相关的属性:

<ns1:datasource>

最佳答案

您还没有添加生成的 XML 的示例,但您可以通过添加 XMLName 字段并从 中删除所有 foo 来删除重复code>foo>bar 标签。

type DataSource struct {
XMLName xml.Name `xml:"ns1 ns1:datasource"`
// ...
Connect string `xml:"ns1:connection-url"`
Class string `xml:"ns1:driver-class"`
Driver string `xml:"ns1:driver"`
MinPool int `xml:"ns1:pool>min-pool-size"`
MaxPool int `xml:"ns1:pool>max-pool-size"`
SecUser string `xml:"ns1:security>ns1:user-name"`
SecPw string `xml:"ns1:security>ns1:password"`
Validation Validation `xml:"ns1:validation"`
Timeout string `xml:"ns1:timeout,omitempty"`
Statement string `xml:"ns1:statement,omitempty"`
}

http://play.golang.org/p/7MDsb_UMjg

关于xml - Go:编码 XML 时重复的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31191772/

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