有没有更简单的方法可以在Go中解码此json?

时间:2019-08-05 21:14:02

标签: arrays go interface type-assertion

我正在尝试将Jira的一些JSON解析为变量。这是使用go-jira软件包(https://godoc.org/github.com/andygrunwald/go-jira

目前,我有一些代码可以吸引开发人员:

dev := jiraIssue.Fields.Unknowns["customfield_11343"].(map[string]interface{})["name"]

team := jiraIssue.Fields.Unknowns["customfield_12046"].([]interface{})[0].(map[string]interface{})["value"]

获得他们所属的团队。

让他们所在的团队有点麻烦,除了必须输入assert,设置索引,然后再次输入assert之外,还有没有更干净的方法来使团队得到支持?

这是完整的json(已修改,但结构相同,但时间太长了):

{    
 "expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations",
   "id":"136944",
   "self":"https://jira.redacted.com/rest/api/2/issue/136944",
   "key":"RM-2506",
   "fields":{  
      "customfield_11343":{  
         "self":"https://redacted.com/rest/api/2/user?username=flast",
         "name":"flast",
         "key":"flast",
         "emailAddress":"flast@redacted.com",
         "displayName":"first last",
         "active":true,
         "timeZone":"Europe/London"
      },
      "customfield_12046":[  
         {  
            "self":"https://jira.redacted.com/rest/api/2/customFieldOption/12045",
            "value":"diy",
            "id":"12045"
         }
      ],

   }

谢谢

2 个答案:

答案 0 :(得分:3)

这很困难,因为第二个是数组形式。这使得使用地图变得困难。

对于第一个,它很容易使用:

type JiraCustomField struct {
    Self         string `json:"self"`
    Name         string `json:"name"`
    Key          string `json:"key"`
    EmailAddress string `json:"emailAddress"`
    DisplayName  string `json:"displayName"`
    Active       bool   `json:"active"`
    TimeZone     string `json:"timeZone"`
}
type JiraPayload struct {
    Expand string                     `json:"expand"`
    ID     string                     `json:"id"`
    Key    string                     `json:"key"`
    Fields map[string]JiraCustomField `json:"fields"`
}

https://play.golang.org/p/y8-g6r0kInV

在第二种情况下,特别是这部分Fields map[string]JiraCustomField,看起来您需要像Fields map[string][]JiraCustomField这样的数组形式。

在这种情况下,我认为您需要制作自己的Unmarshaler。这是一个很好的教程:https://blog.gopheracademy.com/advent-2016/advanced-encoding-decoding/

使用自定义Unmarshal / marshaler可以执行的操作是使用Reflection包,并检查它是数组还是结构。如果是结构,则将其放入数组中,并将其存储在Fields map[string][]JiraCustomField中。

答案 1 :(得分:3)

我解决此类问题的方法是:

  1. 复制一些我感兴趣的JSON并将其粘贴到https://mholt.github.io/json-to-go/
  2. 删除不感兴趣的字段。
  3. 只需读取数据并解组即可。

给定两个感兴趣的自定义字段,您可能最终会得到类似的结果,但是如果您只需要名称,则可以进一步简化结构。

type AutoGenerated struct {
    Fields struct {
        Customfield11343 struct {
            Self         string `json:"self"`
            Name         string `json:"name"`
            Key          string `json:"key"`
            EmailAddress string `json:"emailAddress"`
            DisplayName  string `json:"displayName"`
            Active       bool   `json:"active"`
            TimeZone     string `json:"timeZone"`
        } `json:"customfield_11343"`
        Customfield12046 []struct {
            Self  string `json:"self"`
            Value string `json:"value"`
            ID    string `json:"id"`
        } `json:"customfield_12046"`
    } `json:"fields"`
}

您得到的结果是,Feed中的所有其他信息都被丢弃,但是您可以非常干净地获得所需的数据。