作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里的这篇惊人的文章:https://www.alexedwards.net/blog/how-to-properly-parse-a-json-request-body很好地解释了如何编写Golang处理程序。
仅当第一个处理程序出错时,我才需要使用两个处理程序,一个接一个。
像这样:
func main() {
r := chi.NewRouter()
r.Post("/api", MyHandlers)
}
func MyHandlers(w http.ResponseWriter, r *http.Request) {
err := DoSomething(w, r)
if err != nil {
println("OMG! Error!")
DoSomethingWithThisOneInstead(w, r)
}
}
func DoSomething(w http.ResponseWriter, r *http.Request) error {
// here I need to read request's Body
// and I can use io.TeeReader()
// and I can use all the code in the amazing article example
// but I don't want to, because it's a lot of code to maintain
res, err := myLibrary.DoSomething(requestBody)
if err != nil {
return err
}
render.JSON(w, r, res) // go-chi "render" pkg
return nil
}
func DoSomethingWithThisOneInstead(w http.ResponseWriter, r *http.Request) {
// here I need to read request's Body again!
// and I can use all the code in the amazing article example
// but I don't want to, because it's a lot of code to maintain
anotherLibrary.DoSomethingElse.ServeHTTP(w, r)
}
request.Body
?go-chi
方法吗?最佳答案
吸收字节并根据需要使用:
func MyHandlers(w http.ResponseWriter, r *http.Request) {
body, err := ioutil.ReadAll(r.Body)
if err != nil {
// handle error
}
r.Body.Close()
r.Body = ioutil.NopCloser(bytes.NewReader(body))
err := DoSomething(w, r)
if err != nil {
println("OMG! Error!")
r.Body = ioutil.NopCloser(bytes.NewReader(body))
DoSomethingWithThisOneInstead(w, r)
}
}
关于go - 有没有一种方法可以在多个处理程序中使用相同的request.Body,而无需手动编写大量代码,或者我需要更改执行此操作的方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62705612/
我是一名优秀的程序员,十分优秀!