是否可以创建具有动态/任意字段和值的结构?


我的应用程序将收到带有 JSON 正文的请求:


{

"Details": {

  "Id": “123”,

 },

"Event": {

  "Event": "Event",

 },

“RequestValues”: [

  {

    “Name": "Name1",

    "Value": "Val1"

  },

  {

    "Name": "Name2",

    "Value": 2

  },

  {

    "Name": “Foo”,

    "Value": true

  }

    ]

  }

这将被解组到我的模型“请求”:


type Request struct {

    Details         Details          `json:"Details"`

    Event           Event            `json:"Event"`

    RequestValues []RequestValues    `json:"RequestValues"`

}


type Details struct {

    Id     string `json:"Id"`

}


type Event struct {

    Event      string `json:"Event"`

}


type RequestValues struct {

    Name  string `json:"Name"`

    Value string `json:"Value"`

}

我必须将模型“请求”重新映射到“值”中具有任意字段的新模型“事件”。在编组新的重新映射模型“事件”后,我应该得到与请求对应的 JSON 输出:


{

"Event": "Event"

"Values": {

  “Id": "123",      <= non arbitrary mapping from Request.Detail.Id

  "Name1": "Val1",  <= arbitrary 

  "Name2": 2,       <= arbitrary

  “Foo”: true       <= arbitrary

}

}


任意值将从“RequestValues”映射。这些字段的名称应该是 Request.RequestValues.Name 的值,它们的值应该是 Request.RequestValues.Value 的值


这是我的“事件”模型:


type Event struct {

    Event             string `json:"Event"`

    Values            Values `json:"Values"`

}


type Values struct{

    Id      string  `json:"Id"`

}