fix example as reported as #1390

Former-commit-id: 0864cdb5a77b75919e733dab29a85767333de7f8
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-11-01 16:07:17 +02:00
parent 303f9d3d69
commit dc9ad50e76

View File

@ -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)