mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
add status code helper method for http response
This commit is contained in:
parent
706e2a07de
commit
932e751240
4 changed files with 54 additions and 5 deletions
|
@ -28,7 +28,7 @@ fn index(mut req: HttpRequest) -> Result<HttpResponse> {
|
|||
req.session().set("counter", 1)?;
|
||||
}
|
||||
|
||||
Ok(httpcodes::HTTPOk.into())
|
||||
Ok(HttpResponse::Ok().into())
|
||||
}
|
||||
|
||||
/// async handler
|
||||
|
@ -36,7 +36,7 @@ fn index_async(req: HttpRequest) -> Once<actix_web::Frame, Error>
|
|||
{
|
||||
println!("{:?}", req);
|
||||
|
||||
once(Ok(HttpResponse::build(StatusCode::OK)
|
||||
once(Ok(HttpResponse::Ok()
|
||||
.content_type("text/html")
|
||||
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))
|
||||
.unwrap()
|
||||
|
@ -48,7 +48,7 @@ fn with_param(req: HttpRequest) -> Result<HttpResponse>
|
|||
{
|
||||
println!("{:?}", req);
|
||||
|
||||
Ok(HttpResponse::build(StatusCode::OK)
|
||||
Ok(HttpResponse::Ok()
|
||||
.content_type("test/plain")
|
||||
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))?)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue