Parse Bytes
from RawForm
#1948
-
When using async fn handler(RawForm(form): RawForm) {}
let app = Router::new().route("/", get(handler));
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You either need to use |
Beta Was this translation helpful? Give feedback.
-
For anybody else with the same problem I ended up using |
Beta Was this translation helpful? Give feedback.
You either need to use
Form
or handle it on your own (perhaps via another library)