第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Go XML 編碼的問題

Go XML 編碼的問題

Go
慕標(biāo)琳琳 2023-05-22 17:12:11
我需要生成以下 xml:<AccessControlList>    <Grant>        <Grantee            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser">            <ID>xxxx-xx</ID>            <DisplayName>rahul.khan</DisplayName>        </Grantee>        <Permission>FULL_CONTROL</Permission>    </Grant></AccessControlList>我的結(jié)構(gòu)定義如下:type Grantee struct {Xmlns_xsi   string `xml:"xmlns xsi,attr,omitempty"`Xsi_type    string `xml:"http://www.w3.org/2001/XMLSchema-instance type,attr,omitempty"`ID          string `xml:",omitempty"`DisplayName string `xml:",omitempty"`}但是,當(dāng)我整理此結(jié)構(gòu)時(shí),生成的結(jié)果 xml 文檔如下所示:<AccessControlList>    <Grant>        <Grantee            xmlns:XMLSchema-instance="http://www.w3.org/2001/XMLSchema-instance" XMLSchema-instance:type="CanonicalUser">            <ID>xxxx-xx</ID>            <DisplayName>rahul.khan</DisplayName>        </Grantee>        <Permission>FULL_CONTROL</Permission>    </Grant></AccessControlList>結(jié)果,當(dāng)文檔被解組時(shí),類型字段似乎沒有被 aws-go-sdk 解析。例如,這是我需要得到的未編組輸出Grantee: {    DisplayName: "rahul.khan",    ID: "xxxx-xx",    Type: "CanonicalUser"  },  Permission: "FULL_CONTROL"}相反,我得到的是:  Grantee: {    DisplayName: "rahul.khan",    ID: "xxxx-xx"  },  Permission: "FULL_CONTROL"}未編組的輸出中似乎缺少 Type 屬性。我在我的代碼和 aws 生成的 xml 文檔中看到的唯一區(qū)別是這一行xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser"比/秒xmlns:XMLSchema-instance="http://www.w3.org/2001/XMLSchema-instance" XMLSchema-instance:type="CanonicalUser"感謝是否有人可以幫助我了解如何解決此問題?
查看完整描述

1 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

這個(gè)結(jié)構(gòu) 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


請(qǐng)注意, 和xmlns:xsi只是xsi:type設(shè)置為顯式屬性名稱,包括冒號(hào)。如您所見,如果在命名空間和屬性名稱之間留一個(gè)空格,encoding/xml 會(huì)進(jìn)行更改以嘗試清理輸出中的命名空間(例如使用命名空間 URL 的最后一部分作為命名空間前綴:例如XMLSchema-instance) .


查看完整回答
反對(duì) 回復(fù) 2023-05-22
  • 1 回答
  • 0 關(guān)注
  • 147 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)