我正在用 Rust 和 Nickel.rs 构建一个 Web 应用程序。我有一个提交带有 POST 请求的表单的路由。
我希望能够使用请求数据(从表单返回的数据),但我不知道如何去做。
// This works and prints 'email=bar&password=foo'
// but how do I get the values separately?
router.post("/login", middleware! { |request, response|
let mut body = String::new();
request.origin.read_to_string(&mut body).unwrap();
format!("{}", body)
});