我是 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
- 1 回答
- 0 關(guān)注
- 122 瀏覽
添加回答
舉報
0/150
提交
取消