Golang

关注公众号 jb51net

关闭
首页 > 脚本专栏 > Golang > Go http.ResponseWriter接口

Go语言中http.ResponseWriter接口

作者:吃我一个平底锅

http.ResponseWriter是Go语言中用来设置HTTP响应的接口,本文主要介绍了Go语言中http.ResponseWriter接口,具有一定的参考价值,感兴趣的可以了解一下

在 Go 语言中,客户端请求信息都封装到了 Request 对象,并通过 ResponseWriter 将响应发送回客户端:

package main

import (
	"fmt"
	"net/http"
)

func myHandler(w http.ResponseWriter, r *http.Request) {
	fmt.Fprintln(w, "hello world")
}

func main() {
	http.HandleFunc("/go", myHandler)

	http.ListenAndServe("127.0.0.1:8000", nil)
}

ResponseWriter 源码结构如下:

type ResponseWriter interface {
   // 用于设置/获取所有响应头信息
	Header() Header
   // 用于写入数据到响应实体
	Write([]byte) (int, error)
   // 用于设置响应状态码
	WriteHeader(statusCode int)
}

包含三个方法:

例如:w.Header().Set("Content-Type", "application/octet-stream")

content-type

指示响应内容的格式,如果这个类型浏览器能够支持阅览并且没有设置content-disposition情况浏览器就会直接展示该资源,比如png、jpeg、video等格式,如果浏览器不支持就会,默认触发下载。常见如下格式:

在这里插入图片描述

content-disposition

包含响应数据的描述信息,以及下载或者在线查看的处理方式。

application/octet-stream

在某些下载文件的场景中,服务端可能会返回文件流,并在返回头中带上Content-Type: application/octet-stream,告知浏览器这是一个字节流,浏览器处理字节流的默认方式就是下载。

例如:当我们在浏览器输入http://localhost:9999/_geecache/scores/Tom时,会触发下载:

在这里插入图片描述

到此这篇关于Go语言中http.ResponseWriter接口的文章就介绍到这了,更多相关Go http.ResponseWriter接口内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家! 

您可能感兴趣的文章:
阅读全文