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

在服务HTTP的http中传递的原始类型。响应编写器接口?

在服务HTTP的http中传递的原始类型。响应编写器接口?

Go
慕沐林林 2022-10-04 15:52:27
在学习期间,我实际上想知道如何回到听众身边。从这个答案中,我发现了http。响应类型被传递给ServeHTTP,但事实并非如此,因为在编译时下面的代码抛出错误。这意味着不实现接口。我很好奇实现接口的类型是什么?net/httphttp.Responsehttp.Responsehttp.ResponseWriterhttp.ResponseWriter# command-line-arguments./server1.go:9:20: http.Response.Header is a field, not a method./server1.go:9:20: impossible type assertion:        http.Response does not implement http.ResponseWriter (missing Header method)func handler(resp http.ResponseWriter, req *http.Request){    actualresp := resp.(http.Response) //https://tour.golang.org/methods/15    resp.Write([]byte("Hello Web, from go"))}func main(){    http.HandleFunc("/api", handler)    http.ListenAndServe(":8000", nil)}
查看完整描述

1 回答

?
慕丝7291255

TA贡献1859条经验 获得超6个赞

网易娱乐.响应仅具有以下方法:

func (r *Response) Cookies() []*Cookie

func (r *Response) Location() (*url.URL, error)

func (r *Response) ProtoAtLeast(major, minor int) bool

func (r *Response) Write(w io.Writer) error

这不会实现 http。响应编写器接口,需要:

Header() Header

Write([]byte) (int, error)

WriteHeader(statusCode int)

所以显然不能用作.http.Responsehttp.ResponseWriter


相反,正如您链接到的答案所提到的,将使用未导出的 http.响应。您可以在代码中找到对 http 服务器端写入的生存期的描述。


查看完整回答
反对 回复 2022-10-04
  • 1 回答
  • 0 关注
  • 64 浏览
慕课专栏
更多

添加回答

举报

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