mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-06 22:37:41 +03:00
introduce route predicates
This commit is contained in:
parent
57fd35ffc1
commit
3bf3738e65
20 changed files with 370 additions and 122 deletions
|
@ -69,11 +69,11 @@ fn main() {
|
|||
// register simple handle r, handle all methods
|
||||
.handler("/index.html", index)
|
||||
// with path parameters
|
||||
.resource("/user/{name}/", |r| r.handler(Method::GET, with_param))
|
||||
.resource("/user/{name}/", |r| r.route().method(Method::GET).handler(with_param))
|
||||
// async handler
|
||||
.resource("/async/{name}", |r| r.async(Method::GET, index_async))
|
||||
.resource("/async/{name}", |r| r.route().method(Method::GET).async(index_async))
|
||||
// redirect
|
||||
.resource("/", |r| r.handler(Method::GET, |req| {
|
||||
.resource("/", |r| r.route().method(Method::GET).handler(|req| {
|
||||
println!("{:?}", req);
|
||||
|
||||
httpcodes::HTTPFound
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue