Go gin-framework:使用 cURL 测试查询和 POST

Go gin-framework: Testing query and POST with cURL

我正在尝试 the README of gin framework ("Another example: query + post form") 中的代码示例:

package main

import (
    "fmt"
    "github.com/gin-gonic/gin"
)

func main() {
    router := gin.Default()

    router.POST("/post", func(c *gin.Context) {
        id := c.Query("id")
        page := c.DefaultQuery("page", "0")
        name := c.PostForm("name")
        message := c.PostForm("message")

        fmt.Printf("id: %s; page: %s; name: %s; message: %s\n", id, page, name, message)
    })
    router.Run(":8080")
}

使用 cURL 测试代码:

curl -d "name=Maru&message=Nice" 0.0.0.0:8080/post?id=2&page=3

服务器 returns:id: 2; page: 0; name: Maru; message: Nice

curl测试是否正确?为什么返回值中的 page 不等于 3?

& 符号 (&) 在您的 shell 中是一个特殊字符。它会导致前一个命令在后台变为 运行。您的 shell 将命令解释为:

curl -d "name=Maru&message=Nice" 0.0.0.0:8080/post?id=2 & # run curl in the background
page=3 # set page=3

转义字符会给你预期的结果:

curl -d "name=Maru&message=Nice" "0.0.0.0:8080/post?id=2&page=3"
curl -d "name=Maru&message=Nice" 0.0.0.0:8080/post?id=2\&page=3