net/http包如何实现restful api?

jinwangdalaohu · · 3895 次点击
看了net/http包的server.go源代码里,里面有个conn结构体对应的接口ServeHTTP,实现这个接口,在这个接口里对URL和方法进行映射应该就能实现restful
#4
更多评论
``` switch req.Method { case http.MethodGet: // deal with GET case http.MethodPost: // deal with POST // ... } ```
#1