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

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

如何將 map[string]interface{} 數(shù)據(jù)轉(zhuǎn)換為 struct

如何將 map[string]interface{} 數(shù)據(jù)轉(zhuǎn)換為 struct

Go
FFIVE 2022-10-24 15:30:37
我不知道怎么問(wèn),所以我舉個(gè)例子問(wèn)。我有一些這樣的數(shù)據(jù){..    "velocityStatEntries":  {    "8753":  {        "estimated":  {"value":  23.0,"text":  "23.0"},        "completed":  {"value":  27.0,"text":  "27.0"}    },    "8673":  {        "estimated":  {"value":  54.5,"text":  "54.5"},        "completed":  {"value":  58.5,"text":  "58.5"}    },    .    .    .    }..}我想聲明一個(gè)類型,它將映射鍵作為它的“KEY”或我給定的任何屬性。是否可以不使用地圖迭代?預(yù)期輸出:{...   "velocityStatEntries": {   {     "key": "8753",     "estimated":  {"value":  54.5,"text":  "54.5"},     "completed":  {"value":  58.5,"text":  "58.5"}   },   {     "key": "8673",     "estimated":  {"value":  54.5,"text":  "54.5"},     "completed":  {"value":  58.5,"text":  "58.5"}   },  }...}這就是我所做的type VelocityStatEntry struct {    Key string    Estimated struct {        Value float64 `json:"value"`        Text  string  `json:"text"`    } `json:"estimated"`    Completed struct {        Value float64 `json:"value"`        Text  string  `json:"text"`    } `json:"completed"`}type RapidChartResponse struct {    ...    VelocityStatEntries map[string]VelocityStatEntry `json:"velocityStatEntries"`    ..}但它不起作用。我想將該字符串映射鍵帶到 KEY 屬性。
查看完整描述

1 回答

?
qq_遁去的一_1

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

如果數(shù)據(jù)來(lái)自 JSON,那么您應(yīng)該跳過(guò)map[string]interface{}并使用由您想要的結(jié)構(gòu)實(shí)現(xiàn)的自定義解組器來(lái)執(zhí)行您想要的操作。也許通過(guò)利用map[string]json.RawMessage. 但是map[string]interface{}結(jié)構(gòu)轉(zhuǎn)換很痛苦,如果可能的話,避免它。


例如:


type VelocityStatEntryList []*VelocityStatEntry


func (ls *VelocityStatEntryList) UnmarshalJSON(data []byte) error {

    var m map[string]json.RawMessage

    if err := json.Unmarshal(data, &m); err != nil {

        return err

    }

    for k, v := range m {

        e := &VelocityStatEntry{Key: k}

        if err := json.Unmarshal([]byte(v), e); err != nil {

            return err

        }

        *ls = append(*ls, e)

    }

    return nil

}

https://go.dev/play/p/VcaW_BWXRVr




查看完整回答
反對(duì) 回復(fù) 2022-10-24
  • 1 回答
  • 0 關(guān)注
  • 291 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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