golang原生http web进行简约封装

百里江山 · · 1390 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

常规写法

一般我们用Golang原生写Web时,一般这样写

func main() {
    http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        w.WriteHeader(200)
        w.Write([]byte("ok"))
    })
    http.ListenAndServe(":8080", nil)
}

如果需要特定的GET,POST,PUT,DELETE处理. 我们需要这样写.


func main() {
    http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        if r.Method != http.MethodPost {
            w.WriteHeader(http.StatusMethodNotAllowed)
            _, _ = w.Write([]byte(http.StatusText(http.StatusMethodNotAllowed)))
        }
        w.WriteHeader(http.StatusOK)
        w.Write([]byte(http.StatusText(http.StatusOK)))
    })
    http.ListenAndServe(":8080", nil)
}

gorestful简约写法

对以上方法操作进行了封装.

  • github.com/yezihack/gorestful
import (
    "github.com/yezihack/gorestful"
    "net/http"
)

func main() {
    router := gorestful.New()
    router.GET("/", Ping)
    router.POST("/ping", Ping)
    router.PUT("/ping", Ping)
    router.PATCH("/ping", Ping)
    router.DELETE("/ping", Ping)
    router.HEAD("/ping", Ping)
    router.CONNECT("/ping", Ping)
    router.TRACE("/ping", Ping)
    http.ListenAndServe(":8080", router)
}

func Ping(w http.ResponseWriter, r *http.Request) {
    w.WriteHeader(http.StatusOK)
    w.Write([]byte(http.StatusText(http.StatusOK)))
}

推荐

不过最后还是推荐使用httprouter, 大名顶顶的Gin Web框架就是使用这个的. 自己写的,纯属学习.


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:百里江山

查看原文:golang原生http web进行简约封装

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1390 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传