6

我使用 Rocket 库,我需要创建一个端点,其中包含动态参数“type”,一个关键字。

我试过这样的东西,但它没有编译:

#[get("/offers?<type>")]
pub fn offers_get(type: String) -> Status {
    unimplemented!()
}

编译器错误:

error: expected argument name, found keyword `type`

火箭中是否可以有一个名为“type”的参数?由于我遵循的规范,我无法重命名参数。

4

1 回答 1

7

将查询参数命名为与保留关键字相同有一个已知限制。它在有关字段重命名主题的文档中突出显示。它确实提到了如何用一些额外的代码来解决你的问题。您的用例示例:

use rocket::request::Form;

#[derive(FromForm)]
struct External {
    #[form(field = "type")]
    api_type: String
}

#[get("/offers?<ext..>")]
fn offers_get(ext: Form<External>) -> String {
    format!("type: '{}'", ext.api_type)
}

对于它的 GET 请求/offers?type=Hello,%20World!应该返回type: 'Hello, World!'

于 2019-01-05T21:24:21.000 回答