mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/kataras/iris"
|
||
|
"github.com/kataras/iris/context"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
app := iris.New()
|
||
|
|
||
|
none, _ := app.None("/invisible/{username}", func(ctx context.Context) {
|
||
|
ctx.Writef("Hello %s with method: %s", ctx.Values().GetString("username"), ctx.Method())
|
||
|
|
||
|
if from := ctx.Values().GetString("from"); from != "" {
|
||
|
ctx.Writef("\nI see that you're coming from %s", from)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.Get("/change", func(ctx context.Context) {
|
||
|
|
||
|
if none.IsOnline() {
|
||
|
none.Method = iris.MethodNone
|
||
|
} else {
|
||
|
none.Method = iris.MethodGet
|
||
|
}
|
||
|
|
||
|
// refresh re-builds the router at serve-time in order to be notified for its new routes.
|
||
|
app.RefreshRouter()
|
||
|
})
|
||
|
|
||
|
app.Get("/execute", func(ctx context.Context) {
|
||
|
// same as navigating to "http://localhost:8080/invisible/kataras" when /change has being invoked and route state changed
|
||
|
// from "offline" to "online"
|
||
|
ctx.Values().Set("from", "/execute") // values and session can be shared when calling Exec from a "foreign" context.
|
||
|
ctx.Exec("GET", "/invisible/kataras")
|
||
|
})
|
||
|
|
||
|
app.Run(iris.Addr(":8080"))
|
||
|
}
|