标签:error tin json 支持 empty api unicode repos lan
json:"内容"
,其中内容可以指定解析后的字段名,添加omitempty
可以使编码时跳过零值字段。json.MarShal
和json.UnMarShal
也提供了json.Encode
和json.Decode
数据流方式的操作。package main
import (
"encoding/json"
"fmt"
"net/http"
)
type Info struct {
Name string
Sex byte `json:"性别,omitempty"`
Age int
adress string // 小写名称不会被解析
}
func main() {
infos := []Info{
{Name: "张三", Sex: 0, Age: 21, adress: "湖北"},
{Name: "李四", Sex: 1, Age: 20, adress: "湖北"},
{Name: "王五", Sex: 1, Age: 19, adress: "湖北"},
{Name: "赵六", Sex: 0, Age: 18, adress: "湖北"},
}
// 编码
jsonStr, err := json.MarshalIndent(infos, "", " ") // json.Marshal 无空格输出
if err != nil {
fmt.Println(err.Error())
}
fmt.Println("编码结果:\n", string(jsonStr))
// 解码
var data []struct{ Name string }
err = json.Unmarshal(jsonStr, &data)
if err != nil {
fmt.Println(err.Error())
}
fmt.Printf("解码结果: \n %#v \n", data)
TestNewDecode()
}
func TestNewDecode() {
// json.NewDecode 针对数据流操作
var commitInfo struct{ Node_id, Url, Html_url string }
resp, err := http.Get("https://api.github.com/repos/golang/go/git/commits/db66972359073ce2f83c9863d77444eca5a73006")
if err != nil {
fmt.Println(err.Error())
}
defer resp.Body.Close()
err = json.NewDecoder(resp.Body).Decode(&commitInfo)
if err != nil {
fmt.Println(err.Error())
}
fmt.Printf("Decode结果:\n %#v \n", commitInfo)
}
标签:error tin json 支持 empty api unicode repos lan
原文地址:https://www.cnblogs.com/rebootok/p/12670256.html