如何创建包含 []byte 类型的嵌套 json 结构?

我目前正在尝试使用 golang 创建以下嵌套 json,包括证书的 json 和 DER 编码字节数组 () 列表:


{

"webhooks":

    [{

    "clientConfig":{

         "caBundle":"<derData []bytes>"

    },

    "name":"sth_name"

    }]

}

因为<certDerBytes[]>,我需要使用一个结构体,但我不知道如何初始化它。到目前为止我已经创建了该结构:


type jsonstruct struct {

    Webhooks []struct {

        ClientConfig struct {

            CaBundle string `json:"caBundle"`

        } `json:"clientConfig"`

        Name string `json:"name"`

    } `json:"webhooks"`

}

但无法实例化我必须编组为 json 的结构。


我尝试过使用字符串文字,以及许多初始化它的方法,就像使用普通的非嵌套结构一样。


我还划分了结构 ietype jsonstruct.. type webhooks ...等,但是出错了。


我还从内到外初始化了该结构,但也不起作用。


湖上湖
浏览 102回答 1
1回答

RISEBY

您最好可能使用base64字节数组本身,并将其作为结构字段的有效负载。一件小事,我个人不喜欢嵌套的命名结构。将它们分开可以让您的代码更加灵活。例如:type jsonstruct struct {&nbsp; &nbsp; Webhooks []Webhook `json:"webhooks"`}type Webhook struct {&nbsp; &nbsp; ClientConfig ClientConfig `json:"clientConfig"`&nbsp; &nbsp; Name string `json:"name"`}type ClientConfig struct {&nbsp; &nbsp; CaBundle string `json:"caBundle"`}func (cc ClientConfig) ToBytes() []byte {&nbsp; &nbsp; return []byte(base64.StdEncoding.DecodeString(cc.CaBundle))}func (cc ClientConfig) FromBytes(cert []byte) {&nbsp; &nbsp; cc.CaBundle = base64.StdEncoding.EncodeToString(cert)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go