gin icon indicating copy to clipboard operation
gin copied to clipboard

GetUint and GetUint64 wrong return

Open bayaderpack opened this issue 1 year ago • 1 comments

Description

I'm trying to use GetUint64 and GetUint but it returns 0

How to reproduce

package main

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

func main() {
	g := gin.Default()
	g.GET("/hello", func(c *gin.Context) {
		c.String(200, "Your ID is %d %d", c.GetUint64("user"), c.GetUint("user"))
	})
	g.Run(":9000")
}

Expectations

$ curl http://localhost:9000/hello?user=1
Your ID is 1 1

Actual result

$ curl -i http://localhost:9000/hello?user=1
Your ID is 0 0

Environment

  • go version: 1.21
  • gin version (or commit ref): 1.9.1
  • operating system: Windows

bayaderpack avatar Apr 18 '24 07:04 bayaderpack

There is a problem with your usage, you should use BindQuery or ShouldBindQuery.

package main

import (
	"net/http"
	
	"github.com/gin-gonic/gin"
)

func main() {
	g := gin.Default()
	g.GET("/hello", func(c *gin.Context) {
		m := make(map[string]string)
		if err := c.BindQuery(&m); err != nil {
			c.String(http.StatusInternalServerError,"input data have error: %v",err)
			return 
		}
		c.String(http.StatusOK,"input data: %v",m["user"])
	})
	g.Run(":9000")
}

If you use c.Get, you need to use your c.Set in context

package main

import (
	"net/http"
	
	"github.com/gin-gonic/gin"
)

func main() {
	g := gin.Default()
	g.GET("/hello", func(c *gin.Context) {
		c.Set("user",999)
		c.String(http.StatusOK,"user id: %d",c.GetInt("user"))
	})
	g.Run(":9000")
}

RedCrazyGhost avatar Apr 19 '24 05:04 RedCrazyGhost