< 返回版块

JH-7 发表于 2020-11-17 21:49

Tags:actix_web,askama

根据askama 的demo确实可以 用struct的方式将内容传到模板中。

比如 #[derive(Template)] #[template(path = "index.html")] struct tempData { name: String, id : String, }

let s = tempData{name: pathData.name.to_string(),id: pathData.id.to_string()}.render().unwrap(); 这样是可以的。 但是我需要在模板是实现迭代器 比如这样

那么我需要怎么来实现tempData 或则说将什么样的结构体传进去呢??

如果大家有好的模板也可以推荐下,顺便给几个详细的demo呗

评论区

写评论

还没有评论

1 共 0 条评论, 1 页