3个版本 (破坏性更新)
0.3.0 | 2023年11月13日 |
---|---|
0.2.0 | 2023年10月23日 |
0.1.0 | 2023年8月17日 |
在HTTP服务器中排名1401
每月下载量76次
22KB
442 代码行
actix-htmx
lib.rs
:
Actix Web的htmx中间件。
actix-htmx
提供了一种在actix web应用程序中轻松处理htmx的方法。使用HtmxMiddleware
包装服务以启用htmx支持,并在您的处理器中访问Htmx
提取器以获取当前htmx状态的信息。辅助方法也存在,使您能够设置htmx响应头,从而从服务器端代码中轻松触发htmx事件。
入门
在您的App
上注册HtmxMiddleware
use actix_htmx::{Htmx, HtmxMiddleware, TriggerType};
use actix_web::{web, App, HttpResponse, HttpServer, Responder};
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.wrap(HtmxMiddleware)
.service(web::resource("/").to(index))
})
.bind("0.0.0.0:8080")?
.run()
.await
}
async fn index(htmx: Htmx) -> impl Responder {
if htmx.is_htmx {
// build a partial view
} else {
// build a full view
}
htmx.trigger_event(
"my_event".to_string(),
Some(r#"{"level": "info", "message": "my event message!"}"#.to_string()),
Some(TriggerType::Standard)
);
HttpResponse::Ok().content_type("text/html").body(// render the view)
}
依赖项
~17–29MB
~518K SLoC