1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00

better query example

This commit is contained in:
Nikolay Kim 2018-05-02 06:30:06 -07:00
parent 31e23d4ab1
commit a38acb41e5

View file

@ -17,6 +17,14 @@
* `HttpRequest::query()` is deprecated. Use `Query` extractor.
```rust
fn index(q: Query<HashMap<String, String>>) -> Result<..> {
...
}
```
or
```rust
let q = Query::<HashMap<String, String>>::extract(req);
```