Rust/Rocket 中的 POST 声明有问题

Trouble with POST declaration in Rust/Rocket

我正在尝试用 rocket 编写一个简单的 api 来帮助自己学习 rust,但是在我尝试声明 POST 路由后我 运行 遇到了这个错误:

error: malformed attribute
  --> src/main.rs:26:1
   |
26 | #[post("/producers", format="application/json", data =<"prod">)]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: expected syntax: #[post(key = value, ..)]

这是该路线的函数声明:

#[post("/producers", format="application/json", data =<"producer">)]
fn post_producer(producer: Json<Producer>) -> String {
    return("hello".to_string());
}

我正在导入这些宏:

#![feature(proc_macro_hygiene, decl_macro)]

#[macro_use] extern crate rocket;
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate rocket_contrib;

use rocket_contrib::json::Json;

我为 GET 声明了另一种方法,但该方法工作正常。我做了一些研究并找到了这些示例和文档: https://api.rocket.rs/v0.4/rocket_codegen/attr.post.html https://rocket.rs/v0.4/guide/requests/#format

据我所知,我正在遵循这两页中提到的约定,但我有点不知道从这里到哪里去。是否缺少一些语法或导入?

根据文档,数据参数必须有引号内的<>。所以 data="<prod>" 应该可以解决这个问题。