-
- go version: 1.12
- gin version (or commit ref): 1.3.0
- operating system: macOS 10.14.3
## Description
Why is this output every time I start a gin server?
```text
[GIN-debug] [WARNING] C…
-
Vulnerable Library - github.com/Gin-gonic/Gin-v1.8.1
Path to dependency file: /go.mod
Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/net/@v/v0.0.0-20220822230855-b0a4917ee28c.m…
-
## Description
I have found the related issues:
#1714
#686
And try to use the code in the issue, but I got the 404 error when the web broswer get the remote web static …
-
## 变量
- 常量: `const x int32 = 1`
- 变量: `var a int32 = 1`
- 隐式变量: `a := 1`
- 类型: bool, byte, intX, floatX, rune, uintptr, string, array, struct, function, interface, map, slice, channel
- int: 这个…
-
I use server app writen on Gin for rendering pdf documents with wkhtmltopdf. wkhtmltopdf receives url with html to transforming it to pdf.
In case if i did some error in template or model (for exam…
-
- go version: 1.12
- gin version (or commit ref): 1.3.0
## Description
I have a route defined like this:
```go
appRt.GET("/*request", s.AppDispatchRequest)
```
The wildcard `request` parame…
-
![image](https://user-images.githubusercontent.com/16441057/55926722-0f421a80-5c45-11e9-9084-a5a699bb2278.png)
l want to return validate field in json, not struct field
-
## Description
I wrote a timeout middleware, but when I request http://localhost:9000/hello
repeatedly, normally it should always return "timeout", but sametimes it return "Hellotimeout".
I se…
-
Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.11.1 linux/amd64
```
### Does this issue reproduc…
komuw updated
2 years ago
-
router.GET("/api/pod/:name/:name1", func(t *gin.Context) {
namespaces := t.Param("name")
app := t.Param("name1")
}
Is that going to get these two parameters ??
Is there another way?…