gpt4 book ai didi

go - 使用 Negroni 时自定义 HTTP 处理程序可以全局使用还是仅按请求使用?

转载 作者:IT王子 更新时间:2023-10-29 01:48:07 25 4
gpt4 key购买 nike

为了确保错误结果在所有请求中得到正确处理,我正在实现自定义处理程序,如 http://blog.golang.org/error-handling-and-go 中所述。 .因此,处理程序不是只接受 w http.ResponseWriter,r *http.Request 参数,而是选择性地返回一个 error

我正在使用 Negroni 并想知道我是否可以设置一次将所有请求包装到 handler 中,或者它是否总是必须像为 //foo 在下面的例子中?

type handler func(w http.ResponseWriter, r *http.Request) error

// ServeHTTP checks for error results and handles them globally
func (fn handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if err := fn(w, r); err != nil {
http.Error(w, err, http.StatusInternalServerError)
}
}

// Index matches the `handler` type and returns an error
func Index(w http.ResponseWriter, r *http.Request) error {
return errors.New("something went wrong")
}

func main() {
router := mux.NewRouter()
// note how `Index` is wrapped into `handler`. Is there a way to
// make this global? Or will the handler(fn) pattern be required
// for every request?
router.Handle("/", handler(Index)).Methods("GET")
router.Handle("/foo", handler(Index)).Methods("GET")

n := negroni.New(
negroni.NewRecovery(),
negroni.NewLogger(),
negroni.Wrap(router),
)

port := os.Getenv("PORT")
n.Run(":" + port)
}

最佳答案

如果需要,您可以围绕 r.Handle 编写一个包装器。您不能使用 Negroni 在全局范围内执行此操作,因为并非您使用的所有中间件都假定您的 handler 类型。

例如

// Named to make the example clear.
func wrap(r *mux.Router, pattern string, h handler) *mux.Route {
return r.Handle(pattern, h)
}

func index(w http.ResponseWriter, r *http.Request) error {
io.WriteString(w, "Hello")
return nil
}

func main() {
r := mux.NewRouter()
wrap(r, "/", index)

http.ListenAndServe(":8000", r)
}

我认为这并不比直接对您的处理程序进行类型转换(这很清楚,尽管有点重复)或将您的处理程序类型转换为结构好多少。后者您稍后可以扩展以包含线程安全字段(您的数据库池、应用程序配置等),然后您可以显式地将这些字段与每个处理程序一起传递。

实际上,您当前的路由器代码仍然清晰易读,并且(对其他人)很明显是什么类型支持您的处理程序。

关于go - 使用 Negroni 时自定义 HTTP 处理程序可以全局使用还是仅按请求使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32286407/

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