ZBLOG

golang http.Post 使用

golang 的 http.Post 函数用于向指定的 URL 发送 POST 请求并获取响应。该函数的语法如下:

func Post(url string, contentType string, body io.Reader) (resp *Response, err error)

其中,url 为要请求的 URL 地址,contentType 为请求体的编码格式,body 为请求体内容,类型为 io.Reader。

示例代码:

package main

import (
    "bytes"
    "fmt"
    "net/http"
)

func main() {
    url := "http://example.com/post"

    // 构造请求体
    data := map[string]string{
        "username": "test",
        "password": "123456",
    }

    jsonStr := []byte(`{"title":"Buy cheese and bread for breakfast."}`)
    reqBody := bytes.NewBuffer(jsonStr)

    // 发送 POST 请求
    resp, err := http.Post(url, "application/json", reqBody)
    if err != nil {
        fmt.Println("Error:", err)
        return
    }
    defer resp.Body.Close()

    // 处理响应
    fmt.Println("Status:", resp.Status)
}

在上面的示例中,我们首先构造了一个包含 username 和 password 字段的数据结构,并将其转换为 JSON 格式作为请求体。然后使用 http.Post 函数发送 POST 请求并获取响应。最后打印出响应状态码。

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=782

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?