nickel-org / nickel.rs

An expressjs inspired web framework for Rust

Home Page:http://nickel-org.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to handle form body ?

imclint21 opened this issue · comments

Hey,

I would like to know how to get the raw body ?

Thanks

The raw body, or do you want the form parsed? examples/form_data/form_data.rs shows how to read the parsed form parameters. It also has some examples of functions that auto-implement the Middleware trait (for issue #442).

Thank you