为了账号安全,请及时绑定邮箱和手机立即绑定

body.Read 未定义(类型 *io.ReadCloser 没有字段或方法 Read)

body.Read 未定义(类型 *io.ReadCloser 没有字段或方法 Read)

Go
隔江千里 2021-08-23 16:37:06
我似乎无法解决这个奇怪的错误。这是我的代码:resp, err := http.Get("example.com/my/text/file.conf")...err = parseEvent(eventchan, &resp.Body)func parseEvent(eventchan chan Event, body *io.ReadCloser) error {raw := make([]byte, 1024*1024*32, 1024*1024*32)n, err := body.Read(raw)我得到这个奇怪的错误:./igen.go:91: body.Read 未定义(类型 *io.ReadCloser 没有字段或方法读取)第 91 行是n, err := body.Read(raw)上面的行。我错过了什么?Golang.org 告诉我 ReadCloser 实现了 Reader,它具有Read(p []byte) (n int, err error)我试图调用的方法。
查看完整描述

1 回答

?
拉丁的传说

TA贡献1789条经验 获得超8个赞

您的参数是body *io.ReadCloser- 表示指向接口的指针ReadCloser,界面,有Read()。只需将您的函数签名更改为:

func parseEvent(eventchan chan Event, body io.ReadCloser) error


查看完整回答
反对 回复 2021-08-23
  • 1 回答
  • 0 关注
  • 313 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信