在happstack中使用html文件作为模板
我可以找到大量有关使用 blitz 和其他编译时模板库与 happstack 的文档,但我想知道如何使用 html 文件作为模板。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以找到大量有关使用 blitz 和其他编译时模板库与 happstack 的文档,但我想知道如何使用 html 文件作为模板。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
虽然有很多选项,但我最喜欢的是
Heist
,它允许您定义splice
:它可以在动态(在运行时加载)
中使用HTML
模板:要在
happstack
中使用heist
,您需要 happstack-heist 包。有关更多详细信息和其他选项,请参阅使用 Heist。Though there are many options, my favourite would be
Heist
, which would allow you to define asplice
:which could be used in a dynamic (loaded at runtime)
HTML
template:To use
heist
inhappstack
, you'll need the happstack-heist package. For more detail and other options, see Using Heist.HStringTemplate 包提供了一个非常通用的运行时模板系统,不仅适用于 HTML,还适用于任何类型的文本输出:
http://hackage.haskell.org/packages/archive/HStringTemplate/0.6.6/doc/html/Text-StringTemplate.html
HStringTemplate 包通过一些额外的功能与 Happstack 很好地集成可选包提供的实例: http://hackage.haskell.org/package/happstack-hstringtemplate
The HStringTemplate package provides a very general runtime templating system for not only HTML, but any sort of text output:
http://hackage.haskell.org/packages/archive/HStringTemplate/0.6.6/doc/html/Text-StringTemplate.html
The HStringTemplate package integrates with Happstack nicely through a few extra instances provided by an optional package: http://hackage.haskell.org/package/happstack-hstringtemplate