gpt4 book ai didi

http - 如何在 go-chi 中启用 gzip 压缩中间件

转载 作者:数据小太阳 更新时间:2023-10-29 03:36:03 24 4
gpt4 key购买 nike

如何使用 go-chi 框架的 gzip 中间件启用 gzip 压缩?

尝试使用此处显示的示例:

https://github.com/go-chi/chi/issues/204

但是当我检查 curl 时,我得到了这个:

$ curl -H "Accept-Encoding: gzip" -I http://127.0.0.1:3333
HTTP/1.1 405 Method Not Allowed
Date: Sat, 31 Aug 2019 19:06:39 GMT

我尝试了代码“hello world”:

package main

import (
"net/http"

"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
)

func main() {
r := chi.NewRouter()
r.Use(middleware.RequestID)
r.Use(middleware.Logger)
//r.Use(middleware.DefaultCompress) //using this produces the same result
r.Use(middleware.Compress(5, "gzip"))
r.Get("/", Hello)
http.ListenAndServe(":3333", r)
}

func Hello(w http.ResponseWriter, r *http.Request){
w.Header().Set("Content-Type", "text/html") //according to the documentation this must be here to enable gzip
w.Write([]byte("hello world\n"))
}

但是当我尝试用curl验证时,结果是一样的

$ curl -H "Accept-Encoding: gzip" -I http://127.0.0.1:3333
HTTP/1.1 405 Method Not Allowed
Date: Sat, 31 Aug 2019 19:06:39 GMT

这是怎么回事?

最佳答案

其他答案现在已经过时了。我必须自己解决这个问题,所以这里是我的发现。

你的错误在这里:

r.Use(middleware.Compress(5, "gzip"))

第二个参数(“类型”)指的是将应用压缩的内容类型。例如:"text/html""application/json"

只需添加要压缩的内容类型列表,或完全删除参数:

func main() {
r := chi.NewRouter()
r.Use(middleware.RequestID)
r.Use(middleware.Logger)
r.Use(middleware.Compress(5))
r.Get("/", Hello)
http.ListenAndServe(":3333", r)
}

这将压缩默认列表中定义的所有内容类型 middleware.Compress :

var defaultCompressibleContentTypes = []string{
"text/html",
"text/css",
"text/plain",
"text/javascript",
"application/javascript",
"application/x-javascript",
"application/json",
"application/atom+xml",
"application/rss+xml",
"image/svg+xml",
}

祝你好运!

关于http - 如何在 go-chi 中启用 gzip 压缩中间件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57740979/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com