Go转json数组

Go转json数组

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

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 }