gpt4 book ai didi

go - HTTP 处理程序——我什么时候应该使用 return?

转载 作者:IT王子 更新时间:2023-10-29 01:26:23 24 4
gpt4 key购买 nike

我对 http 处理程序和处理错误或重定向之类的东西有点困惑。

例如,如果由于某些条件检查而必须重定向,我是否应该执行以下操作:

func SomeHandler(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
if thisThing != thatThing {
log.Print("thisThing not equal to thatThing - redirecting")
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
return // <-- is this necessary?
}
}

最佳答案

规则是:当你完成处理时返回,以防止进一步处理。

在您的情况下,return 不是必需的,因为您的函数中没有进一步的处理。但是,如果您有更进一步的逻辑,您会想要返回:

func SomeHandler(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
if thisThing != thatThing {
log.Print("thisThing not equal to thatThing - redirecting")
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
return // <-- is this necessary?
}
w.Header().Add("Content-Type", "application/json")
// ... add a normal response
}

在这种情况下没有返回,您将发送 header 以启动重定向,然后您将发送一个正常的 JSON 响应。这显然不是您想要的,因此需要 return

精明的读者会注意到还有其他方法可以实现这种类型的控制流。 else 是一个选项:

func SomeHandler(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
if thisThing != thatThing {
log.Print("thisThing not equal to thatThing - redirecting")
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
} else {
w.Header().Add("Content-Type", "application/json")
// ... add a normal response
}
}

但是,随着您的条件变得越来越复杂,return 通常会成为最易读的方法。但这最终是一种风格选择。

关于go - HTTP 处理程序——我什么时候应该使用 return?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47429088/

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