当前位置:主页 > 脚本语言 > Golang >

Golang发送http GET请求的示例代码

时间:2021-04-22 09:07:09 | 栏目:Golang | 点击:

使用标准库http来实现

package tools

import (
 "io/ioutil"
 "net/http"
)

func Get(url string)string{
 res, err :=http.Get(url)
 if err != nil {
  return ""
 }
 robots, err := ioutil.ReadAll(res.Body)
 res.Body.Close()
 if err != nil {
  return ""
 }
 return string(robots)
}

您可能感兴趣的文章:

相关文章