mirror of
https://github.com/kataras/iris.git
synced 2025-01-26 03:56:34 +01:00
0d26f24eb7
Former-commit-id: d20afb2e899aee658a8e0ed1693357798df93462
43 lines
908 B
Go
43 lines
908 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
|
|
"github.com/kataras/iris/v12/sessions"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
sess := sessions.New(sessions.Config{Cookie: "myappsessionid", AllowReclaim: true})
|
|
|
|
app.Get("/set", func(ctx iris.Context) {
|
|
s := sess.Start(ctx)
|
|
s.SetFlash("name", "iris")
|
|
ctx.Writef("Message set, is available for the next request")
|
|
})
|
|
|
|
app.Get("/get", func(ctx iris.Context) {
|
|
s := sess.Start(ctx)
|
|
name := s.GetFlashString("name")
|
|
if name == "" {
|
|
ctx.Writef("Empty name!!")
|
|
return
|
|
}
|
|
ctx.Writef("Hello %s", name)
|
|
})
|
|
|
|
app.Get("/test", func(ctx iris.Context) {
|
|
s := sess.Start(ctx)
|
|
name := s.GetFlashString("name")
|
|
if name == "" {
|
|
ctx.Writef("Empty name!!")
|
|
return
|
|
}
|
|
|
|
ctx.Writef("Ok you are coming from /set ,the value of the name is %s", name)
|
|
ctx.Writef(", and again from the same context: %s", name)
|
|
})
|
|
|
|
app.Listen(":8080")
|
|
}
|