| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
11年前发布

jade 模版引擎的 Java 实现:Jade4j

Jade4j 是 jade 模版引擎的 Java 实现。Jade4j 支持在 Java 程序中直接处理 jade 模版,而无需 JavaScript 环境,完全兼容 jade 语法。

示例代码:

index.jade

!!! 5  html    head      title= pageName    body      ol#books        for book in books          if book.available            li #{book.name} for #{book.price} €

Java model

List<Book> books = new ArrayList<Book>();  books.add(new Book("The Hitchhiker's Guide to the Galaxy", 5.70, true));  books.add(new Book("Life, the Universe and Everything", 5,60, false));  books.add(new Book("The Restaurant at the End of the Universe", 5.40, true));    Map<String, Object> model = new HashMap<String, Object>();  model.put("books", books);  model.put("pageName", "My Bookshelf")

running the above code through String html = Jade4J.render("./index.jade", model) will result in the following output:

<!DOCTYPE html>  <html>    <head>      <title>My Bookshelf</title>    </head>    <body>      <ol id="books">        <li>The Hitchhiker's Guide to the Galaxy for 5,70 €</li>        <li>The Restaurant at the End of the Universe for 5,40 €</li>      </ol>    </body>  </html>

项目主页:http://www.open-open.com/lib/view/home/1384354052727

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1384354052727.html
Jade4j 模板引擎