我目前正在尝试使用 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 ...等,但是出错了。我还从内到外初始化了该结构,但也不起作用。
1 回答
RISEBY
TA贡献1856条经验 获得超5个赞
您最好可能使用base64字节数组本身,并将其作为结构字段的有效负载。
一件小事,我个人不喜欢嵌套的命名结构。将它们分开可以让您的代码更加灵活。
例如:
type jsonstruct struct {
Webhooks []Webhook `json:"webhooks"`
}
type Webhook struct {
ClientConfig ClientConfig `json:"clientConfig"`
Name string `json:"name"`
}
type ClientConfig struct {
CaBundle string `json:"caBundle"`
}
func (cc ClientConfig) ToBytes() []byte {
return []byte(base64.StdEncoding.DecodeString(cc.CaBundle))
}
func (cc ClientConfig) FromBytes(cert []byte) {
cc.CaBundle = base64.StdEncoding.EncodeToString(cert)
}
- 1 回答
- 0 关注
- 101 浏览
添加回答
举报
0/150
提交
取消