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

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

定義此嵌套映射時(shí)如何避免重復(fù)

定義此嵌套映射時(shí)如何避免重復(fù)

Go
汪汪一只貓 2022-09-26 15:42:43
在我的一個(gè)json架構(gòu)中,我有一個(gè)這樣的地圖var deviceSchemaJson = map[string]interface{}{    "additionalProperties": false,    "properties": map[string]interface{}{        "application": map[string]string{            "type": "string",        },        "hostname": map[string]string{            "type": "string",        },        "ipaddress": map[string]interface{}{            "oneOf": []map[string]string{{"format": "ipv4"},{"format": "ipv6"}},            "type": "string",        },        "kernel_version": map[string]string{            "type": "string",        },    },    "type": "object",}如何避免每次都定義?map[string]string
查看完整描述

3 回答

?
holdtom

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

試試這個(gè),如果那適合你更好


package main


import (

    "fmt"

)


func main() {

    fmt.Printf("%#v\n",deviceSchemaJson)

}


var deviceSchemaJson = value{

    "additionalProperties": false,

    "properties": value{

        "application": value{

            "type": "string",

        },

        "hostname": value{

            "type": "string",

        },

        "ipaddress": value{

            "oneOf": []valuestring{{"format": "ipv4"}, {"format": "ipv6"}},

            "type":  "string",

        },

        "kernel_version": valuestring{

            "type": "string",

        },

    },

    "type": "object",

}


type value map[string]interface{}


type valuestring map[string]string

https://play.golang.org/p/6Kq5pvXYvNm


查看完整回答
反對(duì) 回復(fù) 2022-09-26
?
搖曳的薔薇

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

如何避免每次都定義?map[string]string


通過(guò)定義表示數(shù)據(jù)結(jié)構(gòu)的類型。


type DeviceSchema struct {

    AdditionalProperties bool

    Properties Properties

    Type string

}


type Properties struct {

    Application string

    Hostname string

    IpAddress []map[string]string

    KernelVersion string

}


func main() {

    deviceSchemaData := DeviceSchema{

        AdditionalProperties: false,

        Properties: Properties{

            IpAddress: []map[string]string{{"format": "ipv4"},{"format": "ipv6"}},

        },

        Type: "object",

    }

    fmt.Println(deviceSchemaData)

}

https://play.golang.org/p/iHfoft1zyAn


查看完整回答
反對(duì) 回復(fù) 2022-09-26
?
GCT1015

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

簡(jiǎn)化定義的一種方法是:


func stringMap(s...string) map[string]string {

  ret:=map[string]string{}

  for i:=0; i<len(s);i+=2 {

     ret[s[i]]=s[i+1]

  }

  return ret

}


var deviceSchemaJson = map[string]interface{}{

    "additionalProperties": false,

    "properties": map[string]interface{}{

        "application": stringMap("type","string"),

        "hostname": stringMap("type","string"),

        "ipaddress": map[string]interface{}{

            "oneOf": []map[string]string{stringMap("format","ipv4"),stringMap("format","ipv6")},

            "type": "string",

        },

        "kernel_version": stringMap("type","string"),

    },

    "type": "object",

}


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

添加回答

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