您的位置:首页 > Web前端 > JavaScript

Go转json数组

2017-03-29 00:00 148 查看
摘要: Golang json数组 struct

Go转json数组

最近因需要要调用gitlab的API,其中有一个是根据私有token获取Repositories列表
由于返回结果是一个json数组,单纯使用json.Unmarshal没法实现,于是在网上找了一下解决方案,并修改如下:

type JSONObj struct {
data interface{}
}

//Json Initialize the json configruation
func Json(data string) *JSONObj {
j := new(JSONObj)
var f interface{}
err := json.Unmarshal([]byte(data), &f)
if err != nil {
return j
}
j.data = f
return j
}

//GetGitLabModel ...
func (j *JSONObj) GetGitLabModel() []*models.Gitlab {
modelMap := make([]*models.Gitlab, 0)
for k, _ := range (j.data).([]interface{}) {
model := &models.Gitlab{}
if m, ok := (j.data).([]interface{}); ok {
v := m[k].(map[string]interface{})
if h, ok := v["name_with_namespace"]; ok {
model.Name_with_namespace = h.(string)
}
if h, ok := v["http_url_to_repo"]; ok {
model.Http_url_to_repo = h.(string)
}
if h, ok := v["public"]; ok {
model.Public = h.(bool)
}
}
modelMap = append(modelMap, model)
}
return modelMap
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Go sturct json