go语言中json_Marshal、json.Unmarshal函数介绍及jsonjson转map、切片、结构体
json解析函数
json_Marshal是序列化函数,将数据编码成json字符串;
json.Unmarshal反序列的函数,将json字符串解码到相应的数据结构;
demo1.json转map
package controllers
import (
"encoding/json"
"fmt"
)
// TestController is a test control
type TestController struct {
//beego.Controller
BaseController
}
func (c *TestController) Test() {
jsonstr := `{"name":"houtizong","blog":"www.zongscan.com"}`
zmap := make(map[string]interface{})
err := json.Unmarshal([]byte(jsonstr), &zmap)
if err != nil {
fmt.Println("反序列话失败")
} else {
fmt.Println(zmap)
}
}
demo2.json转切片 (其他的代码就省略掉了)
func (c *TestController) Test() {
//json转切片
jsonstr := `[{"name":"houtizong","blog":"www.zongscan.com"}]`
zslice := make([]map[string]interface{}, 0)
err := json.Unmarshal([]byte(jsonstr), &zslice)
if err != nil {
fmt.Println("反序列化失败")
} else {
fmt.Println(zslice)
}
}
demo3.json转结构体
type Persons struct {
Name string
Blog string
}
func (c *TestController) Test() {
//json转结构体
jsonstr := `{"name":"houtizong","blog":"www.zongscan.com"}`
k := Persons{}
err := json.Unmarshal([]byte(jsonstr), &k)
if err != nil {
fmt.Println("反序列化失败")
} else {
fmt.Println(k)
}
}
总结
1.在json转任何类型时都是传的指针
2.使用json_Unmarshil来转json
3.json转切片注意每个值后边的逗号
4.json转结构体时注意结构体的属性必须是开放的,也就是首字符必须大写
完
相关文章