go
SillyBirder
这个作者很懒,什么都没留下…
展开
-
golang http 服务器编程
golang http 服务器编程1. 初识http 是典型的 C/S 架构,客户端向服务端发送请求(request),服务端做出应答(response)。golang 的标准库 net/http 提供了 http 编程有关的接口,封装了内部TCP连接和报文解析的复杂琐碎的细节,使用者只需要和 http.request 和 http.ResponseWriter 两个对象交互就行。也就是说...转载 2018-08-13 11:20:18 · 4054 阅读 · 0 评论 -
go语言web框架gin 从请求中取参数
POST /post/123?id=1234&page=1 HTTP/1.1 Content-Type: application/x-www-form-urlencoded name=manu&message=this_is_great func main() { router := gin.Default() rou...转载 2018-08-20 16:40:08 · 6769 阅读 · 1 评论