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

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

golang 從地圖內(nèi)部的地圖訪問(wèn)值

golang 從地圖內(nèi)部的地圖訪問(wèn)值

Go
三國(guó)紛爭(zhēng) 2022-12-05 17:13:04
我正在利用Avi Go SDK來(lái)獲取 avi healthmonitor 配置,如下所示var healthmonitormap map[string]interface{}err = aviClient.AviSession.GetObjectByName("healthmonitor", "healthmonitorname", &healthmonitormap)if err != nil {    t.Error(err)}它將健康監(jiān)視器的元數(shù)據(jù)存儲(chǔ)在 healthmonitormap 中,如下圖所示map[_last_modified:1644392621383838 failed_checks:3 https_monitor:map[    http_request:GET /welcome HTTP/1.1     http_response_code:[HTTP_2XX HTTP_3XX]] monitor_port:443 name:helloworldspringbootssl-dit1-monitor receive_timeout:3 send_interval:10 successful_checks:3 tenant_ref:https://xxxxxxxxxxxxxxxx/api/tenant/tenant-xxxxxxxxxxxx type:HEALTH_MONITOR_HTTPS url:https://xxxxxxxxxxx/api/healthmonitor/healthmonitor-xxxxxxxxxxxxxxx uuid:healthmonitor-xxxxxxxxxxxxxxxx]從地圖上,我能夠成功訪問(wèn)名稱、monitor_port 等,它們位于地圖的根目錄中,如下所示assert.Equal(t, healthmonitormap["name"], "helloworldspringbootssl-dit1-monitor")assert.Equal(t, float64(443), healthmonitormap["monitor_port"])但是我無(wú)法理解如何訪問(wèn)地圖內(nèi)的地圖 http_request 和 http_response_code 之類的東西。任何幫助表示贊賞。
查看完整描述

1 回答

?
達(dá)令說(shuō)

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

由于地圖的元素是 an ,interface{}因此您必須將其轉(zhuǎn)換為相應(yīng)的類型才能將其作為地圖訪問(wèn),如下所示:


if value, ok := healthmonitormap["https_monitor"].(map[string]interface{}); ok {

    fmt.Println(value["http_request"]) //Output: GET /welcome HTTP/1.1 

}


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

添加回答

舉報(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)