golang 设置 Header Content-type
程序员文章站
2022-03-15 15:18:07
...
直接贴代码
package main
import (
"io"
"net/http"
"encoding/json"
)
type KPI struct{
Fzi int `json:"fenzi"` //分子
Fmu int `json:"fenmu"` //分母
}
func kpi(w http.ResponseWriter, r *http.Request){
kk := KPI{199, 200}
res,_ := json.Marshal(kk)
w.Header().Set("content-type","application/json")
io.WriteString(w, string(res))
}
func main() {
http.HandleFunc("/", kpi)
http.ListenAndServe(":9999", nil)
}
验证结果
推荐阅读
-
PHP 使用header函数设置HTTP头的示例解析 表头
-
PHP下利用header()函数设置浏览器缓存的代码
-
Android为RecyclerView设置header和footer(RecyclerView.Adapter和BaseQuickAdapter两种方式)
-
PHP header()函数使用详细(301、404等错误设置)
-
Excel导出 POI 响应头设置 Content-Type: application/vnd.ms-excel 异常解决方法
-
php中利用header设置content-type和常见文件类型的content-type
-
header函数设置响应头解决php跨域问题实例详解
-
Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight respon
-
关于ajax的get,post请求Content-Type值设置的问题
-
golang-在gin中cookie跨域设置(配合ajax)