mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
7a29519c5a
Former-commit-id: 437b60bc6b37d8a755198fb97809c61b9c18004e
30 lines
594 B
Go
30 lines
594 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
|
|
// this works as expected now,
|
|
// will handle *all* expect DELETE requests, even if there is no routes
|
|
app.Get("/action/{p}", h)
|
|
|
|
app.Run(iris.Addr(":8080"), iris.WithoutServerError(iris.ErrServerClosed))
|
|
}
|
|
|
|
func h(ctx iris.Context) {
|
|
ctx.Writef("[%s] %s : Parameter = `%s`", ctx.Method(), ctx.Path(), ctx.Params().Get("p"))
|
|
}
|
|
|
|
func fallbackHandler(ctx iris.Context) {
|
|
if ctx.Method() == "DELETE" {
|
|
ctx.Next()
|
|
|
|
return
|
|
}
|
|
|
|
ctx.Writef("[%s] %s : From fallback handler", ctx.Method(), ctx.Path())
|
|
}
|