首页 > Web开发 > 详细

handlerbar.js

时间:2014-05-17 00:06:59      阅读:446      评论:0      收藏:0      [点我收藏+]

handlerbar.js

Handlebars templates 像普通的html, 嵌入式的 handlebars 表达式.

<div class="entry">
  <h1>{{title}}</h1>
  <div class="body">
    {{body}}
  </div>
</div>

你可以用<脚本>标签的方式提供向浏览器提供一个模版。利用handlebars.compile编译JavaScript模板。

它采用预编译方式,This will result in a smaller required runtime library and significant savings from not having to compile the template in the browser. This can be especially important when working with mobile devices.

<script id="entry-template" type="text/x-handlebars-template">
  template content
</script>
var source   = $("#entry-template").html();
var template = Handlebars.compile(source);

。。。。。

handlerbar.js,布布扣,bubuko.com

handlerbar.js

原文:http://www.cnblogs.com/dingding0505/p/3724964.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!