在 Haskell 中使用 Hamlet 而不使用 Yesod
谁能给我举一个如何在没有 Yesod 的情况下使用 Hamlet 的例子吗? http://www.yesodweb.com/book/templates 是一个很好的文档,但我无法获取我的 ghci 会话甚至可以渲染一个简单的哈姆雷特模板而不会崩溃。
Can anyone point me to an example of how to use Hamlet without Yesod? http://www.yesodweb.com/book/templates is a great bit of documentation, but I can't get my ghci session to render even a simple hamlet template without crashing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的示例显示了大部分基本内容,包括输入 URL 的呈现。
输出:
Here's an example showing most of the basic stuff, including rendering of typed URLs.
Output:
好吧,手动进行 URL 渲染并以最愚蠢的方式做事,我们可以使用这个:
它按预期工作。我想你想做一些稍微有用的事情,但是这里的简单例子工作得很好,所以在不知道你在哪里遇到麻烦的情况下很难说更多。
Well, handwaving the URL rendering and doing things in the stupidest way that works, we can use this:
Which works as expected. I imagine you want to do something slightly more useful, but the trivial example here works fine so it's hard to say more without knowing where you're having trouble.