为Go提供压缩的内容

我开始在Go中编写服务器端应用程序。我想使用Accept-Encodingrequest标头来确定是否使用压缩响应实体GZIP。我曾希望找到一种直接使用http.Serveorhttp.ServeFile方法执行此操作的方法。

这是一个很普遍的要求。我错过了什么还是我需要推出自己的解决方案?


qq_笑_17
浏览 183回答 3
3回答

ibeautiful

纽约时报已经发布了用于Go的gzip中间件软件包。您只要http.HandlerFunc通过他们的操作GzipHandler,您就完成了。看起来像这样:package mainimport (    "io"    "net/http"    "github.com/nytimes/gziphandler")func main() {    withoutGz := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {        w.Header().Set("Content-Type", "text/plain")        io.WriteString(w, "Hello, World")    })    withGz := gziphandler.GzipHandler(withoutGz)    http.Handle("/", withGz)    http.ListenAndServe("0.0.0.0:8000", nil)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go