1 回答
TA贡献1876条经验 获得超5个赞
这个结构 Marshals 到你需要的 XML,只使用 endcoding/xml.Marshal():
type Grantee struct {
Xmlns_xsi string `xml:"xmlns:xsi,attr,omitempty"` //set namespace prefix explicitly
Xsi_type string `xml:"xsi:type,attr,omitempty"` //set namespace:attr explicitly
ID string `xml:",omitempty"`
DisplayName string `xml:",omitempty"`
}
g := Grantee{
DisplayName: "rahul.khan",
ID: "xxxx-xx",
Xsi_type: "CanonicalUser",
Xmlns_xsi: "http://www.w3.org/2001/XMLSchema-instance", // set namespace URI as the value of the field
}
gm, err := xml.MarshalIndent(g, "", " ")
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("%+s\n", gm)
//<Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser">
// <ID>xxxx-xx</ID>
// <DisplayName>rahul.khan</DisplayName>
//</Grantee>
https://play.golang.org/p/zrVlmktLyZu
请注意, 和xmlns:xsi只是xsi:type设置为显式属性名称,包括冒号。如您所见,如果在命名空间和属性名称之间留一个空格,encoding/xml 会进行更改以尝试清理输出中的命名空间(例如使用命名空间 URL 的最后一部分作为命名空间前缀:例如XMLSchema-instance) .
- 1 回答
- 0 关注
- 120 浏览
添加回答
举报