3个版本
0.1.2 | 2019年9月22日 |
---|---|
0.1.1 | 2019年9月16日 |
0.1.0 | 2019年9月16日 |
8在#flask中排名
每月31次下载
用于awf-help
8KB
122 行
Actix web flask装饰器
- Cargo包:awf-help
示例
extern crate awf_help;
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
use awf_help::{config, route,route_res, ServiceFactory};
#[route(GET, "/")]
fn greet(req: HttpRequest) -> String {
let name = req.match_info().get("name").unwrap_or("World");
format!("Hello {}!", &name)
}
struct Hello{
}
#[route_res("/api/auth")]
impl Hello {
fn get(req: HttpRequest) -> String {
format!("get Hello !")
}
fn post(req: HttpRequest) -> String {
format!("post Hello !")
}
}
fn main() {
HttpServer::new(|| App::new().configure(config))
.bind("127.0.0.1:8000")
.expect("Can not bind to port 8000")
.run()
.unwrap();
}
依赖
~1.5MB
~35K SLoC