-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Open
Description
func main() {
appIris := iris.New()
appIris.Get("/test", func(ctx iris.Context) {
testParam(ctx)
})
appIris.Run(iris.Addr(8879) /* 0.*/, iris.WithPostMaxMemory(maxSize))
}
func testParam(ctx iris.Context) {
fmt.Println("testParam : ", ctx.Request().URL.RawQuery)
}
always show message
[HTTP Server] http: URL query contains semicolon, which is no longer a supported separator; parts of the query may be stripped when parsed; see golang.org/issue/25192
need to fix or disable it
thanks ~