我正在使用Postman在localhost上发布json字符串。 Iam在Postman中传递的json字符串是:
{
“name”: "foo"
}
但是,当我在测试函数中检索数据时,req.Body
我会得到这样的结果:&{%!s(*io.LimitedReader=&{0xc0820142a0 0}) <nil> %!s(*bufio.Reader=<nil>) %!s(bool=false) %!s(bool=true) {%!s(int32=0) %!s(uint32=0)} %!s(bool=true) %!s(bool=false) %!s(bool=false)}
我希望在请求正文中得到名称:foo。
我的go lang代码是:
import (
"encoding/json"
"fmt"
"net/http"
)
type Input struct {
Name string `json:"name"`
}
func test(rw http.ResponseWriter, req *http.Request) {
var t Input
json.NewDecoder(req.Body).Decode(&t)
fmt.Fprintf(rw, "%s\n", req.Body)
}
func main() {
http.HandleFunc("/test", test)
http.ListenAndServe(":8080", nil)
}
有谁能告诉我为什么我在req.Body属性中获取空白数据?非常感谢。
答案 0 :(得分:1)
Reuqes Body应该是空的,因为你已经阅读了所有内容。但那不是问题
从您的问题来看,您的输入似乎无效JSON(您“与”不同)。
Decode 方法将返回错误,您应该检查它。
if err := json.NewDecoder(req.Body).Decode(&t); err != nil {
fmt.Println(err)
}