上传者: 38699352
|
上传时间: 2021-12-19 07:54:33
|
文件大小: 22KB
|
文件类型: -
在 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{}