3 releases
0.1.2 | Jun 8, 2021 |
---|---|
0.1.1 | Jun 8, 2021 |
0.1.0 | Jun 8, 2021 |
#1403 in HTTP server
193 downloads per month
8KB
117 lines
actix-web-pagination
Pagination extractor for actix-web
.
Example
use actix_web::{App, HttpResponse, HttpServer};
use actix_web_pagination::Pagination;
#[actix_web::get("/")]
async fn list(page: Pagination) -> HttpResponse {
println!("page: {:?}", page);
HttpResponse::Ok().finish()
}
#[actix_web::main]
async fn main() -> actix_web::Result<()> {
HttpServer::new(|| {
App::new()
.data(Pagination::config().default_per_page(50))
.service(list)
})
.bind("0.0.0.0:8080")?
.run()
.await?;
Ok(())
}
License
lib.rs
:
Extract pagination from http request
Example
use actix_web::{App, HttpResponse, HttpServer};
use actix_web_pagination::Pagination;
#[actix_web::get("/")]
async fn list(page: Pagination) -> HttpResponse {
println!("page: {:?}", page);
HttpResponse::Ok().finish()
}
#[actix_web::main]
async fn main() -> actix_web::Result<()> {
HttpServer::new(|| {
App::new()
.data(Pagination::config().default_per_page(50))
.service(list)
})
.bind("0.0.0.0:8080")?
.run()
.await?;
Ok(())
}
Dependencies
~28MB
~589K SLoC