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 日 |
#9 在 HTTP 服务器 中
235,460 每月下载量
在 145 个 Crates (104 直接) 中使用
59KB
1K SLoC
actix-cors
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