Go的运行时库文档过时了吗?

因此,我正在使用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,但是闻起来有点奇怪-我搞砸了什么?


繁花不似锦
浏览 201回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go