GolangHttp请求返回结果处理

GolangHttp请求返回结果处理

在 Go 中 Http 请求的返回结果为 *http.Response 类型,Response.Body 类型为 io.Reader,把请求结果转化为Map需要进行一些处理。

写一个公共方法来进行Response转Map处理:

package util import (     "encoding/json"     "net/http"     "io/ioutil" ) func ParseResponse(response *http.Response) (map[string]interface{}, error){     var result map[string]interface{}     body,err := ioutil.ReadAll(response.Body)     if err == nil {         err = json.Unmarshal(body, &result)     }     return result,err }

然后就可以在请求后使用:

req := http.NewRequest("GET", "http://test.com", nil) req.Header.Set("Content-type", "application/json") client := &http.Client{} response,err := client.Do(req) if err == nil {     // 解析Response     returnMap,err := util.ParseResponse(response) }

到此这篇关于Golang Http请求返回结果处理的文章就介绍到这了,更多相关Golang Http请求返回结果内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读