...
可以看到,所有的方法均绑定在ClientResponse
对象上,也就是说必须要请求结束后才能打印。
使用示例
package main
import (
"github.com/gogf/gf/frame/g"
)
func main() {
response, err := g.Client().Get("https://goframe.org")
if err != nil {
panic(err)
}
response.RawDump()
}
...