5

为了在 FORM 中捕获请求的详细信息(我使用的是 actix-web),我在提交 HTML 表单时收到一条错误消息。

当我提交表格时,我收到此错误:

Content type error

使用的代码:

#[derive(Deserialize)]
struct FormData {
    paire: String,
}


fn showit(form: web::Form<FormData>) -> String {
    println!("Value to show: {}", form.paire);
    form.paire.clone()
}

....

.service(
  web::resource("/")
    .route(web::get().to(showit))
    .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
))

使用的 HTML 表单:

<form action="http://127.0.0.1:8080/" method="get">
<input type="text" name="paire" value="Example of value to show">
<input type="submit">

预期结果将是:

要显示的值的示例

4

2 回答 2

3

正如文档中的代码注释中提到的那样,FormData 反序列化仅适用于 Post/x-www-form-urlencoded 请求(目前):

/// extract form data using serde
/// this handler gets called only if the content type is *x-www-form-urlencoded*
/// and the content of the request could be deserialized to a `FormData` struct
fn index(form: web::Form<FormData>) -> Result<String> {
    Ok(format!("Welcome {}!", form.username))
}

所以你有两个解决方案:

1) 将您的表单更改为 post/x-www-form-urlencoded 表单。在您的示例中这很容易,但在实际应用程序中并不总是可能的

2)使用另一种形式的数据提取(还有其他几种提取器)

于 2019-07-16T19:48:34.490 回答
0

我也遇到了这个问题,web::Form改成web::Query.

#[derive(Deserialize)]
struct FormData {
    username: String,
}

fn get_user_detail_as_plaintext(form: web::Query<FormData>) -> Result<String> {
    Ok(format!("User: {}!", form.username))
}
于 2020-08-23T09:07:14.067 回答