mirror of
https://github.com/kataras/iris.git
synced 2025-03-13 21:36:28 +01:00
fix example as reported as #1390
Former-commit-id: 0864cdb5a77b75919e733dab29a85767333de7f8
This commit is contained in:
parent
303f9d3d69
commit
dc9ad50e76
|
@ -70,7 +70,7 @@ func main() {
|
|||
// this will be executed by the MyContext.Context
|
||||
// if MyContext is not directly define the View function by itself.
|
||||
app.Handle("GET", "/hi/{firstname:alphabetical}", recordWhichContextJustForProofOfConcept, func(ctx iris.Context) {
|
||||
firstname := ctx.Values().GetString("firstname")
|
||||
firstname := ctx.Params().Get("firstname") // ctx.Values().GetString("firstname")
|
||||
|
||||
ctx.ViewData("firstname", firstname)
|
||||
ctx.Gzip(true)
|
||||
|
|
Loading…
Reference in New Issue
Block a user