// 请求地址
url := “http://www.xxx.com/api/sys/post/list”
// 创建http客户端
client := http.Client{}
// 设置请求方式、路径
req,err := http.NewRequest(“GET”,url,nil)
// 请求头添加token
req.Header.Add(“token”,token)
resp,err := client.Do(req)
if err != nil{
return nil,0
}
body,_ := ioutil.ReadAll(resp.Body)
bodyStr := string(body)
// 数据接收,respMap为得到的数据1)
respMap := postResp{}
err = json.Unmarshal([]byte(bodyStr),&respMap)