Browse Source

Correct the query parameter name.

Charles 10 years ago
parent
commit
e6cd47a004
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

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