1 个稳定版本

1.0.0 2024年4月23日

#29#derive-deserialize

Download history 146/week @ 2024-04-21 70/week @ 2024-04-28 12/week @ 2024-05-05 187/week @ 2024-05-12 215/week @ 2024-05-19 174/week @ 2024-05-26 120/week @ 2024-06-02 121/week @ 2024-06-09 112/week @ 2024-06-16 155/week @ 2024-06-23 194/week @ 2024-06-30 182/week @ 2024-07-07 125/week @ 2024-07-14 223/week @ 2024-07-21 125/week @ 2024-07-28

每月 655 次下载
zero4rs 中使用

MIT 许可证

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 许可证下授权 (LICENSEhttp://opensource.org/licenses/MIT)

依赖关系

~17–29MB
~513K SLoC