1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

Update to 8.2.0 | BoltDB session database, fix file sessiondb, faster, simpler and improvement Session Database API

Former-commit-id: 4034737a65b78a77277e4283fd9289c17f4a452e
This commit is contained in:
kataras
2017-08-07 06:04:35 +03:00
parent 36e6fb37b8
commit 48e352e1df
24 changed files with 1128 additions and 430 deletions

View File

@@ -17,6 +17,8 @@ func main() {
ctx.Writef("The path after /anything is: %s", paramValue)
})
myroute.Name = "myroute"
// useful for links, although iris' view engine has the {{ urlpath "routename" "path values"}} already.
app.Get("/reverse_myroute", func(ctx context.Context) {
myrouteRequestPath := rv.Path(myroute.Name, "any/path")
@@ -32,4 +34,5 @@ func main() {
// http://localhost:8080/execute_myroute
// http://localhost:8080/anything/any/path/here
app.Run(iris.Addr(":8080"))
}
} // See view/template_html_4 example for more.