码迷,mamicode.com
首页 > Web开发 > 详细

golang的json数据解析

时间:2017-07-18 10:16:26      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:bit   date   inpu   ring   imp   input   hub   type   tle   

import (
    "fmt"
    "time"

    "github.com/astaxie/beego"
    "github.com/bitly/go-simplejson"
)
type Datas struct {
        data struct {
            Id     int64     `json:"id"`
            Userid string    `json:"userid"`
            Title  string    `json:"title"`
            Txt    string    `json:"txt"`
            Date   time.Time `json:"date"`
        } `json:"data"`
    }

json, _ := simplejson.NewJson(this.Ctx.Input.RequestBody)
    datas, _ := json.Get("data").Array()

    for _, v := range datas {
        fmt.Println(v)
        temp, _ := v.(map[string]interface{})
        fmt.Println(temp["id"])
    }

golang的json数据解析

标签:bit   date   inpu   ring   imp   input   hub   type   tle   

原文地址:http://www.cnblogs.com/kekemuyu/p/7198517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!