gpt4 book ai didi

json - 如何使用 Rocket 响应包含 JSON 数据的 POST 请求?

转载 作者:行者123 更新时间:2023-12-03 11:43:28 29 4
gpt4 key购买 nike

我正在尝试使用 Rocket crate 创建后端:

fn main() {
rocket::ignite().mount("/", routes![helloPost]).launch();
}

#[derive(Debug, PartialEq, Eq, RustcEncodable, FromForm)]
struct User {
id: i64,
USR_Email: String,
USR_Password: String,
USR_Enabled: i32,
USR_MAC_Address: String
}

#[post("/", data = "<user_input>")]
fn helloPost(user_input: Form<User>) -> String {
println!("print test {}", user_input);
}

当我运行 cargo run 时,一切正常,但是当我向 postman 发送 POST 请求进行测试时,我收到此错误:

POST /:
=> Matched: POST / (helloPost)
=> Warning: Form data does not have form content type.
=> Outcome: Forward
=> Error: No matching routes for POST /.
=> Warning: Responding with 404 Not Found catcher.
=> Response succeeded.

我已将 header 内容类型设置为 JSON 和其他可用的语言,但使用 Rocket 我无法让它工作。

这是我的 JSON 正文:

{
"USR_Email": "test@test.it",
"USR_Password": "500rockets",
"USR_Enabled": 0,
"USR_MAC_Address": "test test"
}

如何解决这个问题?

最佳答案

基本上逐字改编自 rocket_contrib example .

cargo .toml:

<snip>

[dependencies]
rocket = "0.4.2"
rocket_contrib = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

源/main.rs:

#![feature(proc_macro_hygiene, decl_macro)]

#[macro_use] extern crate rocket;
use rocket_contrib::json::Json;
use serde::Deserialize;

#[derive(Debug, PartialEq, Eq, Deserialize)]
struct User {
id: i64,
USR_Email: String,
USR_Password: String,
USR_Enabled: i32,
USR_MAC_Address: String
}

#[post("/", format = "json", data = "<user_input>")]
fn helloPost(user_input: Json<User>) -> String {
format!("print test {:?}", user_input)
}

fn main() {
rocket::ignite().mount("/hello", routes![helloPost]).launch();
}

一些注意事项:

  • 使用Json而不是 Form
  • 添加format = "json"到你的路线
  • 使用Deserialize来自 serde而不是 RustcEncodable . Serde 早已取代 rustc_serialize 作为 Rust 的 序列化解决方案,而这正是 rocket_contrib 使用的。

用 curl 测试:

$ curl -H 'Content-Type: application/json' \
--data '{"id": 123, "USR_Email": "abc@example.com", "USR_Password": "hunter2", "USR_Enabled": 1, "USR_MAC_Address": "ff:ff"}' \
http://localhost:8000/hello
print test Json(User { id: 123, USR_Email: "abc@example.com", USR_Password: "hunter2", USR_Enabled: 1, USR_MAC_Address: "ff:ff" })

请注意,您的 User 中的每个字段必须存在于 JSON 中,或 400 Bad Request将被提高。你可能想使用 Option<>对于其中一些。

关于json - 如何使用 Rocket 响应包含 JSON 数据的 POST 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59964486/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com