因此,我正在使用GO解析POST。我想要的是帖子的正文,因此我尝试以下操作(在此上下文中r为类型*http.Request):
var body io.Reader
var d []byte
body = r.Body.Reader
body.Read( d)
但是,这会导致编译错误:
Compile error: <file>:44:
r.Body.Reader undefined (type io.ReadCloser has no field or method Reader)
奇怪的。我可能已经发誓说它是在文档中定义的...啊!在这里。
现在,我刚开始使用Go,但是闻起来有点奇怪-我搞砸了什么?
相关分类