mustache Javaコード例
MustacheFactory mf= new
DefaultMustacheFactory();
Mustache mustache =
mf.compile("template.mustache");
mustache.execute(writer, context)
.flush();
Tuesday, September 24, 13
57.
mustache JavaScriptコード例
<script type="text/javascript"src="http://
cdnjs.cloudflare.com/ajax/libs/mustache.js/
0.7.2/mustache.min.js"></script>
var html = Mustache.to_html(template,json);
$('#result').html(html);
Tuesday, September 24, 13
58.
Mustacheプラグイン
• Play Framework1.x
• Play Framework 2.x
• Grails Mustache Plugin
https://github.com/julienba/play2-mustache
http://www.playframework.com/modules/mustache
http://grails.org/plugin/mustache
Tuesday, September 24, 13