我正在探索 Iron Web 框架的功能。据我所知,Iron 核心没有处理 HTTP 参数的 API,所以我尝试使用 params crate。
error: the trait bound `params::Params: plugin::Plugin<iron::Request<'_, '_>>` is not satisfied [E0277]
let map = req.get_ref::<Params>().unwrap();
^~~~~~~
help: run `rustc --explain E0277` to see a detailed explanation
我没有找到这个错误的踪迹,也不知道如何修复它。
extern crate iron;
extern crate params;
use iron::prelude::*;
use iron::status;
use params::*; //{self, Params, Value};
fn handle_user(req: &mut Request) -> IronResult<Response> {
use params::{Params, Value};
let map = req.get_ref::<Params>().unwrap();
match map.find(&["user", "name"]) {
Some(&Value::String(ref name)) if name == "Marie" => {
Ok(Response::with((iron::status::Ok, "Welcome back, Marie!")))
},
_ => Ok(Response::with(iron::status::NotFound)),
}
}
fn main() {
Iron::new(handle_user).http("localhost:2330").unwrap();
}
库的版本
iron = "0.4.0"
params = "0.2.2"