代码改变世界

Go转json数组

2018-01-11 12:32  Ljohn  阅读(5931)  评论(0编辑  收藏  举报

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
}