我使用 Rocket 库,我需要创建一个端点,其中包含动态参数“type”,一个关键字。
我试过这样的东西,但它没有编译:
#[get("/offers?<type>")]
pub fn offers_get(type: String) -> Status {
unimplemented!()
}
编译器错误:
error: expected argument name, found keyword `type`
火箭中是否可以有一个名为“type”的参数?由于我遵循的规范,我无法重命名参数。