1 Star 0 Fork 0

world100/go_lib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
40_http使用.go 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
world100 提交于 2020-08-01 16:22 . 'fsm'
package main
import (
"fmt"
"io/ioutil"
"net/http"
"strings"
)
//HTTPGet get 请求
func HTTPGet(uri string) ([]byte, error) {
response, err := http.Get(uri)
if err != nil {
return nil, err
}
defer response.Body.Close()
if response.StatusCode != http.StatusOK {
return nil, fmt.Errorf("http get error : uri=%v , statusCode=%v", uri, response.StatusCode)
}
return ioutil.ReadAll(response.Body)
}
func main() {
//str, err := HTTPGet("http://www.baidu.com")
//if err != nil {
// fmt.Println("err ", err)
//}
//fmt.Println(string(str))
url := "http://127.0.0.1:9090/"
// 表单数据
contentType := "application/x-www-form-urlencoded"
data := "name=枯藤&age=18"
// json
//contentType := "application/json"
//data := `{"name":"枯藤","age":18}`
resp, err := http.Post(url, contentType, strings.NewReader(data))
if err != nil {
fmt.Println("post failed, err:%v\n", err)
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println("get resp failed,err:%v\n", err)
return
}
fmt.Println(string(b))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/world100/go_lib.git
[email protected]:world100/go_lib.git
world100
go_lib
go_lib
master

搜索帮助