mustache.clj 是一个mustache模板的Clojure实现。 在开发Rssminer时,因需要一个更快更轻巧的模板库,而开发。

特点:

  1. 零依赖,小巧。包含源代码的jar仅16K
  2. 速度快。在i5机器上,一个测试中,每秒可生成约300M的HTML 
  3. 通过Macro,完成模板到函数的转化,使用简单

示例代码:

 

(DEFTemplate template (slurp "test/sample.tpl"))

(def Data {:title "mustache.clj"
           :desc "Logic-Less {{mustache}} templates for Clojure"
           :tags [{:tag "Clojure"}
                  {:tag "Mustache"}
                  {:tag "PerfoRMance"}]})

(println (template data))

 

 


{{ title }}

{{ desc }}

  • {{#tags}}
  • {{ tag }}
  • {{/tags}} {{# hidden }} this will not show, if hidden is false or empty list {{/ hidden }}

 
输出:

 

mustache.clj

Logic-less {{mustache}} templates for Clojure

  • Clojure
  • Mustache
  • Performance

 

 

 


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务