代码拉取完成,页面将自动刷新
同步操作将从 蓝桥云课/golang-100 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import (
"fmt"
"log"
"net/http"
"net/http/httptest"
"net/http/httputil"
)
func main() {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Date", "Wed, 01 Jan 2020 00:00:00 GMT")
w.WriteHeader(http.StatusOK)
w.Write([]byte("hello world"))
}))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
fmt.Println(err)
}
defer resp.Body.Close()
// DumpResponse returns wire representation
// of the http response
dump, err := httputil.DumpResponse(resp, true)
if err != nil {
log.Fatal(err)
}
// %q is used here to make the testable example work
// use %s to print in multiple lines:
// HTTP/1.1 200 OK
// Content-Length: 11
// Content-Type: text/plain; charset=utf-8
// Date: Wed, 01 Jan 2020 00:00:00 GMT
//
// hello world
fmt.Printf("%q", dump)
// Output:
// "HTTP/1.1 200 OK\r\nContent-Length: 11\r\nContent-Type: text/plain; charset=utf-8\r\nDate: Wed, 01 Jan 2020 00:00:00 GMT\r\n\r\nhello world"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。