Go语言web框架Martini怎么输出嵌套的json数据?

刚开始学习Go语言,使用的是martini框架,现在从数据库获取了一系列的数据向以json格式输出。
我定义一个结构体:

type ImageData struct {
    Src    string
    Tp     string
    Title  string
    Width  int
    Height int
}

type ImageDatas []ImageData

然后从数据库获取数据:

var (
    id        int
    img_url   string
    type_name string
    title     string
    width     int
    height    int
)
for imgOut.Next() {
    err := imgOut.Scan(&id, &img_url, &type_name, &title, &width, &height)
    if err != nil {
        fmt.Println(s.Join([]string{"查询数据失败", err.Error()}, "-->"))
        return nil, err
    } else {
        imageData := ImageData{img_url, type_name, title, width, height}
        imageDatas = append(imageDatas, imageData)
    }
}

获取的数据格式如下:

{http://www.gratisography.com/pictures/10_1.jpg animals Picture by Ryan McGuire 555 370} 
{http://www.gratisography.com/pictures/16_1.jpg animals Picture by Ryan McGuire 555 370}]

我使用如下的方式处理上面的数据:

if results, err := json.Marshal(imageDatas); err == nil {
    r.JSON(200, map[string]interface{}{"error": "10000", "msg": string(results)})
} else {
    r.JSON(200, map[string]interface{}{"error": "10001", "msg": "Data Error"})
}

但是最后输出的格式是这样的:

{
"error": "10001",
"msg": "[{\"Src\":\"http://www.gratisography.com/pictures/232_1.jpg\",\"Tp\":\"people\",\"Title\":\"Picture by Ryan McGuire\",\"Width\":555,\"Height\":370},{\"Src\":\"http://www.gratisography.com/pictures/233_1.jpg\",\"Tp\":\"people\",\"Title\":\"Picture by Ryan McGuire\",\"Width\":555,\"Height\":370}]"
}

结果虽然像普通的json数据那样是键值对的形式,但是后面的数据以一个字符串的形式作为msg的值,现在想要的时把那个字符串按照json格式显示,形成嵌套的样子。
求解·~~~^_^~~~·

阅读 5.8k
3 个回答

Marshal函数只有在转换成功的时候才会返回数据,在转换的过程中我们需要注意几点:

  • JSON对象只支持string作为key,所以要编码一个map,那么必须是map[string]T这种类型(T是Go语言中任意的类型)

  • Channel, complex和function是不能被编码成JSON的

  • 嵌套的数据是不能编码的,不然会让JSON编码进入死循环

  • 指针在编码的时候会输出指针指向的内容,而空指针会输出null

为什么不用beego呢

results是符合interface{}定义的

r.JSON(200, map[string]interface{}{"error": "10000", "msg": results})

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题