ZBLOG

golang 获取post

在 Golang 中,获取 HTTP POST 请求的数据可以通过标准库 net/http 或 Web 框架(如 Gin、Echo)实现。以下是常见场景的示例:


1. 获取表单数据 (Form Data)

适用于 Content-Type: application/x-www-form-urlencodedmultipart/form-data

(1) 标准库 net/http

  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. )
  6. func handler(w http.ResponseWriter, r *http.Request) {
  7. // 解析表单数据(必须先调用 ParseForm)
  8. err := r.ParseForm()
  9. if err != nil {
  10. http.Error(w, "Bad Request", http.StatusBadRequest)
  11. return
  12. }
  13. // 获取单个字段
  14. name := r.Form.Get("name")
  15. age := r.Form.Get("age")
  16. // 直接访问 Form 对象(map类型)
  17. fmt.Println("All form data:", r.Form)
  18. fmt.Fprintf(w, "Name: %s, Age: %s", name, age)
  19. }
  20. func main() {
  21. http.HandleFunc("/", handler)
  22. http.ListenAndServe(":8080", nil)
  23. }

(2) Gin 框架

  1. r.POST("/form", func(c *gin.Context) {
  2. name := c.PostForm("name")
  3. age := c.DefaultPostForm("age", "18") // 带默认值
  4. c.JSON(200, gin.H{
  5. "name": name,
  6. "age": age,
  7. })
  8. })

2. 获取 JSON 数据

适用于 Content-Type: application/json

(1) 标准库 net/http

  1. package main
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "io/ioutil"
  6. "net/http"
  7. )
  8. type User struct {
  9. Name string `json:"name"`
  10. Age int `json:"age"`
  11. }
  12. func handler(w http.ResponseWriter, r *http.Request) {
  13. body, err := ioutil.ReadAll(r.Body)
  14. if err != nil {
  15. http.Error(w, "Bad Request", http.StatusBadRequest)
  16. return
  17. }
  18. var user User
  19. err = json.Unmarshal(body, &user)
  20. if err != nil {
  21. http.Error(w, "Invalid JSON", http.StatusBadRequest)
  22. return
  23. }
  24. fmt.Fprintf(w, "Name: %s, Age: %d", user.Name, user.Age)
  25. }

(2) Gin 框架(推荐)

  1. r.POST("/json", func(c *gin.Context) {
  2. var user User
  3. if err := c.ShouldBindJSON(&user); err != nil {
  4. c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
  5. return
  6. }
  7. c.JSON(200, gin.H{
  8. "name": user.Name,
  9. "age": user.Age,
  10. })
  11. })

3. 获取文件上传 (Multipart Form)

适用于 Content-Type: multipart/form-data

(1) Gin 框架示例

  1. r.POST("/upload", func(c *gin.Context) {
  2. file, header , err := c.Request.FormFile("file") // key为"file"
  3. if err != nil {
  4. c.String(http.StatusBadRequest, "Upload failed")
  5. return
  6. }
  7. defer file.Close()
  8. //保存文件到本地
  9. dst := "./uploads/" + header.Filename
  10. c.SaveUploadedFile(header , dst)
  11. c.String(http.StatusOK,"Upload success")
  12. })

4. RAW Body (原始数据流)

直接读取请求体:

  1. bodyBytes , _ := io.ReadAll(r.Body )
  2. defer r.Body.Close()
  3. rawData:= string(bodyBytes )

注意事项

  1. 必须关闭 Body:处理完请求后调用 r.Body.Close()(或在 Go1.20+中会自动处理)。
  2. 多次读取问题r.Body只能读取一次,如需复用可先保存到变量。
  3. 性能优化:对大文件上传使用流式处理,避免全量读取内存。

根据实际需求选择合适的方法!


内容由零声教学AI助手提供,问题来源于学员提问

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

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

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

联系我们

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

微信号:3007537140

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

关注我们
x

注册

已经有帐号?