mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
renamed Route::handler to Route::f, added Route::h to register Handler
This commit is contained in:
parent
03f7d95d88
commit
f5d6179a34
19 changed files with 79 additions and 40 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.route().method(Method::GET).handler(with_param))
|
||||
.resource("/user/{name}/", |r| r.route().method(Method::GET).f(with_param))
|
||||
// async handler
|
||||
.resource("/async/{name}", |r| r.route().method(Method::GET).async(index_async))
|
||||
// redirect
|
||||
.resource("/", |r| r.route().method(Method::GET).handler(|req| {
|
||||
.resource("/", |r| r.route().method(Method::GET).f(|req| {
|
||||
println!("{:?}", req);
|
||||
|
||||
httpcodes::HTTPFound
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue