1 unstable release
new 0.1.2 | Mar 15, 2025 |
---|---|
0.1.1 |
|
0.1.0 |
|
#1381 in Parser implementations
380 downloads per month
10KB
84 lines
Implement poem FromRequest to deserialize struct from query string.
struct poem_queryext::QueryExt
is deprecated,because it will cause a memory leak, use poem_queryext::QueryExtN
instead.
Example
use poem_queryext::QueryExtN;
use poem_openapi::{payload::PlainText, OpenApi};
use serde::Deserialize;
struct Api;
#[OpenApi]
impl Api {
//test url: /test?name=cx
//test url: /test?name=cx&age=18&hobby[0]=music&hobby[1]=game
#[oai(path = "/test", method = "get")]
async fn test(&self, QueryExtN(query): QueryExtN<QueryObj>) -> PlainText<String> {
PlainText(format!(
"name:{},age:{},hobby:{}",
query.name,
query.age.unwrap_or_default(),
query.hobby.unwrap_or_default().join(",")
))
}
}
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct QueryObj{
name:String,//if want use &str,use Arc<str> or Cow<'_,str>
age:Option<i8>,//Non mandatory fields use Option<T>
hobby:Option<Vec<String>>//Non mandatory fields use Option<T>
}
Dependencies
~14–26MB
~399K SLoC