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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 Golang 中訪問此結(jié)構(gòu)的字段

如何在 Golang 中訪問此結(jié)構(gòu)的字段

Go
慕哥9229398 2022-11-28 16:55:35
我是 Golang 的新手,我需要知道如何從格式的結(jié)構(gòu)中訪問值:type CurrentSkuList struct {    SubscriptionNumber   string `json:"subscriptionNumber`    Quantity             int    `json:"quantity"`    SubscriptionProducts []struct {        ID              int    `json:"id"`        ActiveStartDate int    `json:"activeStartDate"`        ActiveEndDate   int    `json:"activeEndDate"`        Status          string `json:"status"`        Sku             string `json:"sku"`        ChildIDs        []int  `json:"childrenIds"`    } `json:"subscriptionProducts"`}例如,如果我有一個currentSkus類型的變量CurrentSkuList并且我只需要訪問Sku和Status值,有沒有辦法做類似的事情:currentSkus.SubscriptionProducts.Sku?編輯!當(dāng)我嘗試訪問時currentSkus.Quantity出現(xiàn)編譯器錯誤undefined (type []util.CurrentSkuList has no field or method Quantity)。
查看完整描述

1 回答

?
紫衣仙女

TA貢獻(xiàn)1839條經(jīng)驗 獲得超15個贊

是的,有辦法。您可以通過.您建議的語法訪問。在這種情況下,CurrentSkuList 返回 SubscriptionProduct 的一個片段,你知道這是因為這[] struct部分。然后你將不得不以這種方式訪問數(shù)據(jù):

currentSkus.SubscriptionProducts[index].Sku


查看完整回答
反對 回復(fù) 2022-11-28
  • 1 回答
  • 0 關(guān)注
  • 122 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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