net/http包如何实现restful api?

jinwangdalaohu · · 3886 次点击
这样写也是可以,不过有点重复性太大
#3
更多评论
``` switch req.Method { case http.MethodGet: // deal with GET case http.MethodPost: // deal with POST // ... } ```
#1