分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

go语音之进阶篇json解析到结构体

发布时间:2023-09-06 02:08责任编辑:白小东关键词:jsjson

1、json解析到结构体

示例:

package mainimport ("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": "itcast", ???"subjects": [ ???????"Go", ???????"C++", ???????"Python", ???????"Test" ???], ???"isok": true, ???"price": 666.666}`var tmp IT ??????????????????????????????????//定义一个结构体变量err := json.Unmarshal([]byte(jsonBuf), &tmp) //第二个参数要地址传递if err != nil {fmt.Println("err = ", err)return}//fmt.Println("tmp = ", tmp)fmt.Printf("tmp = %+v\n", tmp)}

执行结果:

tmp = {Company:itcast Subjects:[Go C++ Python Test] IsOk:true Price:666.666}

  

示例2: 定义结构体,解析你想生成的字段

package mainimport ("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": "itcast", ???"subjects": [ ???????"Go", ???????"C++", ???????"Python", ???????"Test" ???], ???"isok": true, ???"price": 666.666}`var tmp IT ??????????????????????????????????//定义一个结构体变量err := json.Unmarshal([]byte(jsonBuf), &tmp) //第二个参数要地址传递if err != nil {fmt.Println("err = ", err)return}type IT2 struct {Subjects []string `json:"subjects"` //二次编码}var tmp2 IT2err = json.Unmarshal([]byte(jsonBuf), &tmp2) //第二个参数要地址传递if err != nil {fmt.Println("err = ", err)return}fmt.Printf("tmp2 = %+v\n", tmp2)}

执行结果:

tmp2 = {Subjects:[Go C++ Python Test]}

  

go语音之进阶篇json解析到结构体

原文地址:https://www.cnblogs.com/nulige/p/10265922.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved