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

[GO]json解析到结构体

时间:2018-09-17 19:31:10      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:str   tmp   更改   imp   执行   rsh   coding   需要   hal   

package main

import (
    "encoding/json"
    "fmt"
)

type IT struct {
    Company string `json:"company"`
    Subjects []string `json:"subjects"`
    Isok bool `json:"isok"`
    Price float64 `json:"price"`
}

func main() {
    jsonbuf := `{"company":"zyg","isok":true,"price":5.55,"subjects":["go","python","java"]}`
    var tmp IT
    err := json.Unmarshal([]byte(jsonbuf), &tmp) //这个地方一下是取tmp的地址的,它需要对结构体进行更改,根据查看源码可以知道它的返回就一个err
    if err != nil {
        return
    }
    fmt.Printf("tmp = %+v\n", tmp)
}

执行的结果为

tmp = {Company:zyg Subjects:[go python java] Isok:true Price:5.55}  //这个结果没有问题,打印就是没有双引号的

如果其中只想需打印结果体的下面两行,只需要修改结构体为

type IT struct {
    //Company string `json:"company"`
    //Subjects []string `json:"subjects"`
    Isok bool `json:"isok"`
    Price float64 `json:"price"`
}

那么执行的结果自动的解析 为

tmp = {Isok:true Price:5.55}

 

[GO]json解析到结构体

标签:str   tmp   更改   imp   执行   rsh   coding   需要   hal   

原文地址:https://www.cnblogs.com/baylorqu/p/9663501.html

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