1 个稳定版本
1.0.0 | 2024年4月23日 |
---|
#29 在 #derive-deserialize
每月 655 次下载
在 zero4rs 中使用
42KB
577 代码行
actix-web-validator
此crate是一个Rust库,使用Validator crate为actix-web提供验证机制
安装
此crate与Cargo一起工作,可以在crates.io上找到,具有类似于下面的Cargo.toml
[dependencies]
actix-web-validator = "5.0.1"
validator = { version = "0.16", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
支持的提取器
actix_web::web::Json
actix_web::web::Query
actix_web::web::Path
actix_web::web::Form
serde_qs::actix::QsQuery
支持的 actix_web
版本
- 对于 actix-web-validator
0.*
支持的 actix-web 版本是1.*
- 对于 actix-web-validator
1.*
支持的 actix-web 版本是2.*
- 对于 actix-web-validator
2.*
支持的 actix-web 版本是3.*
- 对于 actix-web-validator
3+
支持的 actix-web 版本是4.*
示例
use actix_web::{web, App};
use serde::Deserialize;
use actix_web_validator::Query;
use validator::Validate;
#[derive(Debug, Deserialize)]
pub enum ResponseType {
Token,
Code
}
#[derive(Deserialize, Validate)]
pub struct AuthRequest {
#[validate(range(min = 1000, max = 9999))]
id: u64,
response_type: ResponseType,
}
// Use `Query` extractor for query information (and destructure it within the signature).
// This handler gets called only if the request's query string contains a `id` and
// `response_type` fields.
// The correct request for this handler would be `/index.html?id=1234&response_type=Code"`.
async fn index(info: Query<AuthRequest>) -> String {
format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
}
fn main() {
let app = App::new().service(
web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
}
许可证
actix-web-validator 在 MIT 许可证下授权 (LICENSE 或 http://opensource.org/licenses/MIT)
依赖关系
~17–29MB
~513K SLoC