#router #框架 #iron框架

rust-easy-router

为Iron框架提供的简单路由框架

2个版本

使用旧的Rust 2015

0.1.1 2018年6月18日
0.1.0 2018年6月18日

1339 in HTTP服务器

MIT 协议

7KB
124

Rust Easy Router

为Rust Web框架Iron添加"匹配"路由的库。这可以用来相对轻松地构建REST API,并具有高稳定性。

示例代码

extern crate rust-easy-router;

use rust-easy-router::*;

fn test_handle(vars: HashMap<String, String>, body: &mut Body) -> IronResult<Response>
{
let mut string = "Vars:".to_owned();

for (x, y) in &vars {
string.push_str(&format!("\n{} -> {}", x, y));
}

string.push_str("\n");

/* Get Body 

依赖项

~4.5MB
~114K SLoC