1
0
mirror of https://github.com/actix/examples synced 2025-06-29 02:10:36 +02:00

add askama example

This commit is contained in:
Nikolay Kim
2018-04-24 09:12:48 -07:00
parent 0ae5ae7bc6
commit cde7ef8c96
7 changed files with 154 additions and 0 deletions

View File

@ -0,0 +1,45 @@
extern crate actix;
extern crate actix_web;
#[macro_use]
extern crate askama;
use actix::prelude::*;
use actix_web::{http, server, App, HttpRequest, HttpResponse, Result};
use askama::Template;
#[derive(Template)]
#[template(path = "user.html")]
struct UserTemplate<'a> {
name: &'a str,
text: &'a str,
}
#[derive(Template)]
#[template(path = "index.html")]
struct Index;
fn index(req: HttpRequest) -> Result<HttpResponse> {
let s = if let Some(name) = req.query().get("name") {
UserTemplate {
name: name,
text: "Welcome!",
}.render()
.unwrap()
} else {
Index.render().unwrap()
};
Ok(HttpResponse::Ok().content_type("text/html").body(s))
}
fn main() {
let sys = System::new("template-askama");
// start http server
server::new(move || App::new().resource("/", |r| r.method(http::Method::GET).f(index)))
.bind("0.0.0.0:8080")
.unwrap()
.start();
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}