我正在使用github.com/pressly/chi构建这个简单的程序,我尝试从以下内容解码一些 JSON http.Request.Body
:
package main
import (
"encoding/json"
"fmt"
"net/http"
"github.com/pressly/chi"
"github.com/pressly/chi/render"
)
type Test struct {
Name string `json:"name"`
}
func (p *Test) Bind(r *http.Request) error {
err := json.NewDecoder(r.Body).Decode(p)
if err != nil {
return err
}
return nil
}
func main() {
r := chi.NewRouter()
r.Post("/products", func(w http.ResponseWriter, r *http.Request) {
var p Test
// err := render.Bind(r, &p)
err := json.NewDecoder(r.Body).Decode(&p)
if err != nil {
panic(err)
}
fmt.Println(p)
})
http.ListenAndServe(":8080", r)
}
当我不使用render.Bind()
(from "github.com/pressly/chi/render"
) 时,它会按预期工作。
但是,当我取消注释该行err := render.Bind(r, &p)
并注释该行时err := json.NewDecoder(r.Body).Decode(&p)
,它会恐慌EOF
:
2017/06/20 22:26:39 http: panic serving 127.0.0.1:39696: EOF
因此json.Decode()
失败了。
我做错了什么还是在调用http.Request.Body
之前已经在其他地方读过render.Bind()
?