29 个版本

0.7.0 2024 年 1 月 6 日
0.6.5 2023 年 12 月 6 日
0.6.4 2022 年 10 月 28 日
0.6.1 2022 年 3 月 7 日
0.1.0 2019 年 6 月 15 日

#9HTTP 服务器

Download history 67133/week @ 2024-04-22 65665/week @ 2024-04-29 60621/week @ 2024-05-06 68930/week @ 2024-05-13 74872/week @ 2024-05-20 67113/week @ 2024-05-27 70287/week @ 2024-06-03 71063/week @ 2024-06-10 66729/week @ 2024-06-17 71651/week @ 2024-06-24 60489/week @ 2024-07-01 62267/week @ 2024-07-08 56316/week @ 2024-07-15 63662/week @ 2024-07-22 54961/week @ 2024-07-29 57499/week @ 2024-08-05

235,460 每月下载量
145 个 Crates (104 直接) 中使用

MIT/Apache

59KB
1K SLoC

actix-cors

crates.io Documentation Version MIT or Apache 2.0 licensed
Dependency Status Download Chat on Discord

Actix Web 的跨域资源共享 (CORS) 控制。

此中间件可用于应用程序和资源。构建后,可以使用 Cors 构建器作为 Actix Web 的 App::wrap()Scope::wrap()Resource::wrap() 方法的参数。

此 CORS 中间件自动处理 OPTIONS 预检请求。

包功能

  • draft-private-network-access: ⚠️ 不稳定。添加了对 Private Network Access 规范扩展的 opt-in 支持。由于它将遵循草案规范中的破坏性更改,直到最终确定,因此此功能是不稳定的。

示例

use actix_cors::Cors;
use actix_web::{get, http, web, App, HttpRequest, HttpResponse, HttpServer};

#[get("/index.html")]
async fn index(req: HttpRequest) -> &'static str {
    "<p>Hello World!</p>"
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| {
        let cors = Cors::default()
            .allowed_origin("https://www.rust-lang.net.cn")
            .allowed_origin_fn(|origin, _req_head| {
                origin.as_bytes().ends_with(b".rust-lang.org")
            })
            .allowed_methods(vec!["GET", "POST"])
            .allowed_headers(vec![http::header::AUTHORIZATION, http::header::ACCEPT])
            .allowed_header(http::header::CONTENT_TYPE)
            .max_age(3600);

        App::new()
            .wrap(cors)
            .service(index)
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await;

    Ok(())
}

文档 & 资源

依赖关系

~14–25MB
~448K SLoC