网站建设资讯

NEWS

网站建设资讯

创新互联GoFrame教程:GoFrameHTTPClient-请求信息打印

基本介绍

http​客户端支持对​HTTP​请求的输入与输出原始信息获取与打印,方便调试,相关方法如下:

成都创新互联公司专注于南湖网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供南湖营销型网站建设,南湖网站制作、南湖网页设计、南湖网站官网定制、成都小程序开发服务,打造南湖网络公司原创品牌,更为您提供南湖网站排名全网营销落地服务。

func (r *Response) Raw() string
func (r *Response) RawDump()
func (r *Response) RawRequest() string
func (r *Response) RawResponse() string

可以看到,所有的方法均绑定在​Response​对象上,也就是说必须要请求结束后才能打印。

使用示例

package main

import (
	"github.com/GOgf/gf/v2/frame/g"
	"github.com/gogf/gf/v2/os/gctx"
)

func main() {
	response, err := g.Client().Post(
		gctx.New(),
		"https://GoFrame.org",
		g.Map{
			"name": "john",
		},
	)
	if err != nil {
		panic(err)
	}
	response.RawDump()
}

执行后,终端输出为:

+---------------------------------------------+
|                   REQUEST                   |
+---------------------------------------------+
POST / HTTP/1.1
Host: goframe.org
User-Agent: GoFrameHTTPClient v2.0.0-beta
Content-Length: 9
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip


name=john

+---------------------------------------------+
|                   RESPONSE                  |
+---------------------------------------------+
HTTP/1.1 405 Method Not Allowed
Connection: close
Transfer-Encoding: chunked
Allow: GET
Cache-Control: no-store
Content-Security-Policy: frame-ancestors 'self'
Content-Type: text/html;charset=UTF-8
Date: Fri, 03 Dec 2021 09:43:29 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Server: nginx
...

文章名称:创新互联GoFrame教程:GoFrameHTTPClient-请求信息打印
URL网址:http://cdysf.com/article/ccoghsj.html