9

我看到的所有流行的 Clojure Web 框架都使用 Hiccup 来生成 HTML。与从模板中解析语法的其他框架相比,我发现前端设计人员很难适应打嗝。

有没有不需要前端开发人员学习 LISP 的 clojure web 框架?

4

5 回答 5

22

查看Enlive。它将允许您的设计师在纯 HTML 中工作。

于 2011-06-25T00:32:28.613 回答
14

Same Answer Plus Opinion

As other answers have already stated, Enlive will let you use pure HTML templates, while Hiccup leverages Clojure data structures to generate HTML.

But, as I think we'd all agree, HTML should be semantic and describe the structure of the page, while layout and look-and-feel should be left to CSS and JavaScript. At least out of my experience, front-end designers should not be responsible for drastically altering the structure of a page, but rather responsible for styling and placement through CSS and JavaScript.

Whenever working on an application more complex than a collection of static HTML pages, if a front-end designer feels the need to change a page's structure, that should be a joint conversation with the developer who put it together. With this in mind, the developer should choose a templating scheme or HTML generation method that allows him/her to be most productive. My two cents.

于 2011-06-25T15:14:01.160 回答
4

Hiccup 主要是示例中的默认设置,但我所知道的所有 web 框架都可以与任何模板库一起使用。

就像提到的 dnolen 一样,Enlive 非常受欢迎(https://github.com/cgrand/enlive)。Enlive 有 100% 的代码和 html 分离。如果您有其他人在做设计,非常好用。

除了 Hiccup 和 Enlive 之外,还有鲜为人知的舰队 ( https://github.com/Flamefork/fleet ),它更接近流行的 Ruby/PHP 解决方案。

于 2011-06-25T02:44:35.107 回答
1

三年后:

你也可以看看 Caribou http://let-caribou.in/。它是一个新的 Clojure 框架,它使用良好的旧 HTML 语法进行模板化。

您可以先观看此截屏视频:http ://www.youtube.com/watch?v=dPUQ0GUvSt0

你会发现你也不需要在 clojure 中编写代码来更新你的数据模型。只有控制器(模板和模型之间的链接)会要求你以 lispy 的方式说话......

祝你好运!

于 2014-01-11T00:43:50.773 回答
1

还有塞尔默

Clojure 中一个快速的、受 Django 启发的模板系统。

因此,这更适合大型应用程序。

于 2015-11-03T21:39:43.553 回答