第十一章 http标准库和其他标准库

前端之家收集整理的这篇文章主要介绍了第十一章 http标准库和其他标准库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

其实这一章的内容,我们在之前的测试章节都已经涉及过了.

 

一. 模拟一个http服务端

package main

import "net/http"

type handler int

func (h *handler) ServeHTTP(writer http.ResponseWriter,request *http.Request) {
    writer.Write([]byte(abc))
}

func main() {
    h := new(handler)
    http.ListenAndServe(:8889,h)
}

这就模拟了一个服务端,我们可以网客户端发各种各样的数据. 

 

二. 模拟一个http客户端

package main

import (
    fmt"
    io/IoUtil
)

func main() {
    resp,err := http.Get(http://localhost:8889)
    if err != nil {
        panic(error)
    }

    defer resp.Body.Close()

    body,err := IoUtil.ReadAll(resp.Body)
    fmt.Println(string(body))
}

这样就把刚刚服务端发送的abc读取出来了

 

三. 发送带有header的http请求


)

func main() {
    // 使用自定义的request
    request,err := http.NewRequest(http.MethodGet,)
    }
     添加一个ua,这样服务端吧ua取出来,就可以展示出来了
    request.Header.Add(ua",1)">)
    resp,1)"> http.DefaultClient.Do(request)
    resp,err := http.Get("http://localhost:8889")
    (body))
}

四. 第四个讲的是pprof,我之前在测试的时候已经详细研究过pprof用来监控web服务的性能,这里就不在描述了,

给出一个连接: https://www.cnblogs.com/ITPower/articles/12324659.html   

https://www.cnblogs.com/ITPower/articles/12317631.html

 

五. 其他标准库,这里也是一代而过,讲的并不详细,学完这门课,我们在集中精力研究各个标准库

原文链接:/go/997144.html

猜你在找的Go相关文章