当前位置: 首页 > 工具软件 > gonet2 > 使用案例 >

Go实战--net/http中JSON的使用(The way to go)

萧光华
2023-12-01

生命不止,继续Go go go~~~

很显然,json广泛应用在客户端和服务端之间的数据交换。

之前介绍了go中的net/http package 和 encoding/json package,那我们今天就将二者结合,介绍一下在net/http的操作中如何使用JSON。

定义一个结构
包含了两个字段,id和balance:

type User struct{
    Id      string
    Balance uint64
}

通过POST或PUT或PATCH向服务端发送JSON

    u := User{Id: "110", Balance: 8}
    b := new(bytes.Buffer)
    json.NewEncoder(b).Encode(u)
    res, _ := http.Post("https://httpbin.org/post", "application/json; charset&#
 类似资料: